浏览器标题切换
浏览器标题切换end

POJ2406-Power Strings-KMP循环节/哈希循环节

Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concatenation as multiplication, exponentiation by a non-negative integer is defined in the normal way: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).

Input

Each test case is a line of input representing s, a string of printable characters. The length of s will be at least 1 and will not exceed 1 million characters. A line containing a period follows the last test case.

Output

For each s you should print the largest n such that s = a^n for some string a.

Sample Input

abcd aaaa ababab .

Sample Output

1 4 3

Hint

This problem has huge input, use scanf instead of cin to avoid time limit exceed.

 

题意:

求每个字符串最多是由多少个相同的子字符串重复连接而成的。

如:ababab 则最多有3个 ab 连接而成。

 

思路:两种方法求循环节的模板题。

 

哈希:

 

复制代码
 1 #include<stdio.h>
 2 #include<string.h>
 3 typedef unsigned long long ull;
 4 const int N=1e6+20;
 5 char a[N];
 6 ull p[N],sum[N],x=131;
 7 
 8 void init()
 9 {
10     p[0]=1;
11     for(int i=1; i<N; i++)
12         p[i]=p[i-1]*x;
13 }
14 
15 int main()
16 {
17     init();
18     while(~scanf("%s",a+1))
19     {
20         if(a[1]=='.')
21             break;
22         int len=strlen(a+1);
23         sum[0]=0;
24         for(int i=1;i<=len;i++)//主串哈希值
25             sum[i]=sum[i-1]*x+a[i];
26         for(int i=1; i<=len; i++)
27         {
28             if(len%i!=0)
29                 continue;//说明不存在该循环节
30             int flag=0;
31             for(int j=i; j<=len; j+=i)
32             {   //ababab 
33                 //i=2时 -> j=2、4、6
34                 if((sum[j]-sum[j-i]*p[i])!=sum[i])
35                 //(sum[2]-sum[2-2]*p[2])!=sum[2]
36                 //(sum[4]-sum[4-2]*p[2])!=sum[2]
37                 //(sum[6]-sum[6-2]*p[2])!=sum[2]
38                 {
39                     flag=1;
40                     break;
41                 }
42             }
43             if(flag==0)
44             {
45                 printf("%d\n",len/i);
46                 break;
47             }
48         }
49     }
50     return 0;
51 }
复制代码

 

 

 

 

KMP:

 思想:

比如abcabcabcabc ,nextt[len]=9,len=12,所以len-next[len]=3肯定是len=12的因数,并且此时len-next[len]=3也肯定为最短循环节的长度,所以len/(len-next[len])=12/(12-9)=12/3=4,即循环节的个数,也就是出现过几次abc。

如果不能整除说明不存在循环节,直接输出1即可。

int w=len-nextt[len];
if(len%w==0)
    printf("%d\n",len/w);
else
    printf("1\n");

 

详细代码如下:

复制代码
 1 #include<stdio.h>
 2 #include<string.h>
 3 const int N=1e6+20;
 4 
 5 int nextt[N],len;
 6 char a[N];
 7 
 8 void getnext()
 9 {
10     int i=0,j=-1;
11     nextt[0]=-1;
12     while(i<len)
13     {
14         if(j==-1||a[i]==a[j])
15         {
16             nextt[++i]=++j;
17         }
18         else
19             j=nextt[j];
20     }
21 }
22 
23 int main()
24 {
25     while(~scanf("%s",a))
26     {
27         if(a[0]=='.')
28             break;
29         len=strlen(a);
30         getnext();
31         len=strlen(a);
32         int w=len-nextt[len];
33         if(len%w==0)
34             printf("%d\n",len/w);
35         else
36             printf("1\n");
37     }
38     return 0;
39 }
View Code
复制代码

 

 

posted @   抓水母的派大星  阅读(257)  评论(0编辑  收藏  举报
编辑推荐:
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
· 理解Rust引用及其生命周期标识(上)
· 浏览器原生「磁吸」效果!Anchor Positioning 锚点定位神器解析
· 没有源码,如何修改代码逻辑?
阅读排行:
· 全程不用写代码,我用AI程序员写了一个飞机大战
· MongoDB 8.0这个新功能碉堡了,比商业数据库还牛
· 记一次.NET内存居高不下排查解决与启示
· 白话解读 Dapr 1.15:你的「微服务管家」又秀新绝活了
· DeepSeek 开源周回顾「GitHub 热点速览」
点击右上角即可分享
微信分享提示