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:Input
The input contains a number of test cases. Each test case occupies a single line that contains the string S described above.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
ababcababababcabab aaaaa
Sample Output
2 4 9 18 1 2 3 4 5
Source
POJ Monthly--2006.01.22,Zeyuan Zhu//3892K 547MS #include#include #define M 10007 char pattern[400007]; int next[400007],m,ans[400007]; void pre(int len) { int i = 0, j = -1; next[0] = -1; while(i != len) { if(j == -1 || pattern[i] == pattern[j]) next[++i] = ++j; else j = next[j]; } } int main() { while(scanf("%s",pattern)!=EOF) { memset(ans,0,sizeof(ans)); memset(next,0,sizeof(next)); m=strlen(pattern); pre(m); int k=0; for(int i=m; i!=0; ) { ans[k++]=next[i]; i=next[i]; } for(int i=k-2; i>=0; i--) printf("%d ",ans[i]); printf("%d\n",m); } return 0; }