首页 > 代码库 > poj 2406 Power Strings(KMP)
poj 2406 Power Strings(KMP)
题目链接:
id=2406">http://poj.org/problem?
id=2406
题目大意:找出字串最大循环次数
方法:和上一个一样 传送门
#include <iostream> #include <cstdio> #include <algorithm> #include <cstring> using namespace std; int next[1000010]; char str[1000010]; void getnext(char *s, int len) { int i = 0; int j = -1; next[0] = -1; while(i < len) { if(j == -1 || str[i] == str[j]) next[++i] = ++j; else j = next[j]; } } int main() { int n; int cas = 0; while(~scanf("%s",str) && str[0]!='.') { int len = strlen(str); getnext(str,len); if(next[len] && len%(len-next[len])==0) printf("%d\n",len/(len-next[len])); else printf("1\n"); } return 0; }
poj 2406 Power Strings(KMP)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。