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

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

hot3.png

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

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

[]   [Go Back]   []   []

/*=============================================================================#     FileName: 2752.cpp#         Desc: poj 2752#       Author: zhuting#        Email: cnjs.zhuting@gmail.com#     HomePage: my.oschina.net/locusxt#      Version: 0.0.1#    CreatTime: 2013-12-21 15:51:46#   LastChange: 2013-12-21 15:51:46#      History:=============================================================================*/#include 
#include
#include
#include
#include
#define maxn 400005char str[maxn];int ans[maxn] = {0};int* get(char * a){ int len = strlen(a); if (len <= 0) return NULL; int j = 0, k = -1; int * n = new int[len + 1]; n[0] = -1;/*一开始漏了这个*/ while(j < len)/**/ { while (k >= 0 && str[k] != str[j]) { k = n[k]; } ++j; ++k; n[j] = k; } return n;}int main(){ while(scanf("%s", str) != EOF) { int ans_num = 0; int len = strlen(str); ans[ans_num++] = len; //printf("%d", len); int* tmp = get(str); int cur = len - 1; int next = tmp[cur + 1] - 1; while(true) { if (str[cur] != str[next]) break; ans[ans_num++] = next + 1; //printf(" %d", next + 1); cur = next; next = tmp[cur + 1] - 1; } //printf("\n"); for (int i = ans_num - 1; i >= 0; --i)/*要从小到大*/ printf("%d ", ans[i]); printf("\n"); } return 0;}

转载于:https://my.oschina.net/locusxt/blog/186663

你可能感兴趣的文章
SSH keys manager for nodejs
查看>>
Haskell and Yesod
查看>>
前端数据请求的终极方案
查看>>
使用Proxy 监听所有接口状态
查看>>
Kotlin:命名参数、默认参数值、可变参数、局部函数
查看>>
每一个 Linux 用户必须使用的 11 款便携应用
查看>>
Java第八课
查看>>
让你秒懂的事件冒泡和捕获demo,在Vue中的应用
查看>>
深入解析Immutable及 React 中实践
查看>>
React 进阶二-组件最佳实践
查看>>
PHP的那些魔术方法(二)
查看>>
Android:使用 Intent 连接多个活动
查看>>
《设计模式》之代理模式
查看>>
【从 Spring 源码中学习设计原则or模式】- 0. 大纲
查看>>
AST语法结构树初学者完整教程
查看>>
「译」Web安全快速入门
查看>>
后台播放音乐时进来电话或微信视频通话暂停音乐播放 网易云音乐 喜马拉雅...
查看>>
弹性计算双周刊 第24期
查看>>
mysql 超大数据/表管理技巧
查看>>
常用Windows系统命令
查看>>