博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2752 Seek the Name, Seek the Fame
阅读量:6986 次
发布时间:2019-06-27

本文共 2265 字,大约阅读时间需要 7 分钟。

 

Seek the Name, Seek the Fame
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 16679   Accepted: 8466

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

ababcababababcababaaaaa

Sample Output

2 4 9 181 2 3 4 5

Source

,Zeyuan Zhu

 

普通的KMP

答案是从小到大输出,所以需要用栈存一下

 

1 /*by SilverN*/ 2 #include
3 #include
4 #include
5 #include
6 #include
7 using namespace std; 8 const int mxn=450000; 9 char s[mxn];10 int next[mxn];11 int st[mxn];12 int main(){13 int i,j;14 while(scanf("%s",s+1)!=EOF){15 memset(st,0,sizeof st);16 int len=strlen(s+1);17 j=0;18 for(i=2;i<=len;i++){19 while(j && s[j+1]!=s[i])j=next[j];20 if(s[j+1]==s[i])j++;21 next[i]=j;22 }23 int top=0;24 for(i=len;i;i=next[i]){25 st[++top]=i;26 }27 while(top){28 printf("%d ",st[top--]);29 }30 printf("\n");31 }32 return 0;33 }

 

转载于:https://www.cnblogs.com/SilverNebula/p/5677438.html

你可能感兴趣的文章
python 将ipv4的格式转换
查看>>
C语言宏的副作用的简单实例
查看>>
关于C语言结构体对齐的学习
查看>>
富文本框
查看>>
windows下安装rabbitMQ
查看>>
20个优秀的移动(iPhone)网站设计案例
查看>>
week04_python函数返回值、作用域
查看>>
CentOS 6.3安装Nginx开启目录浏览、下载功能
查看>>
oracle登陆认证方式
查看>>
FMDB/SQLCipher数据库管理
查看>>
cocos_python
查看>>
关于安装oracle 11G R2 for Windows X64问题
查看>>
springmvc 重定向传递参数
查看>>
tomcat实现session集群及tomcat+memcached共享session存储(四)
查看>>
线性时间排序--桶排
查看>>
Three.js学习笔记
查看>>
ceph-deploy部署bluestore
查看>>
AIX修改系统时间 命令
查看>>
CI Weekly #22 | flow.ci 新版 iOS 构建流程的 4 大变化
查看>>
AOV网和AOE网
查看>>