前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >poj-------------(2752)Seek the Name, Seek the Fame(kmp)

poj-------------(2752)Seek the Name, Seek the Fame(kmp)

作者头像
Gxjun
发布2018-03-22 13:56:53
7360
发布2018-03-22 13:56:53
举报
文章被收录于专栏:mlml

Seek the Name, Seek the Fame

Time Limit: 2000MS

Memory Limit: 65536K

Total Submissions: 11831

Accepted: 5796

Description

The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give names to their newly-born babies. They seek the name, and at the same time seek the fame. In order to escape from such boring job, the innovative little cat works out an easy but fantastic algorithm:  Step1. Connect the father's name and the mother's name, to a new string S.  Step2. Find a proper prefix-suffix string of S (which is not only the prefix, but also the suffix of S).  Example: Father='ala', Mother='la', we have S = 'ala'+'la' = 'alala'. Potential prefix-suffix strings of S are {'a', 'ala', 'alala'}. Given the string S, could you help the little cat to write a program to calculate the length of possible prefix-suffix strings of S? (He might thank you by giving your baby a name:) 

Input

The input contains a number of test cases. Each test case occupies a single line that contains the string S described above.  Restrictions: Only lowercase letters may appear in the input. 1 <= Length of S <= 400000. 

Output

For each test case, output a single line with integer numbers in increasing order, denoting the possible length of the new baby's name.

Sample Input

代码语言:javascript
复制
ababcababababcabab
aaaaa

Sample Output

代码语言:javascript
复制
2 4 9 18
1 2 3 4 5

Source

POJ Monthly--2006.01.22,Zeyuan Zhu

代码:

代码语言:javascript
复制
 1     #include<iostream>
 2     #include<cstring>
 3     #include<cstdlib>
 4     #include<cstdio>
 5     using namespace std;
 6     const int maxn= 400050;
 7     int next[maxn];
 8     int ans[maxn];
 9     char str[maxn];
10     int main()
11     {
12       int i,j;
13       while(scanf("%s",str)!=EOF&&*str!='.')
14       {
15           j=-1;
16           i=0;
17           next[i]=-1;
18           int len=strlen(str);
19           while(i<len)
20           {
21               if(j==-1||str[i]==str[j])
22               {
23                   i++;
24                   j++;
25                  next[i]=j;
26               }
27               else j=next[j];
28           }
29           /*
30            麻袋,搞得我好郁闷,没有看清楚,怎么也不懂怎么构造。原来要找的是前缀和后缀相同的串
31           */
32           i=len;
33           int cnt=0;
34           while(i>0)
35           {
36            // printf("%d\n",i);
37            ans[cnt++]=i;
38            i=next[i];
39           }
40           for(i=cnt-1;i>0;i--)
41             printf("%d ",ans[i]);
42             printf("%d\n",ans[0]);
43       }
44         return 0;
45     }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-07-30 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档