首页 > 代码库 > POJ 2406 Power String(KMP)
POJ 2406 Power String(KMP)
解题思路:
依旧是利用next数组的性质,m % (m - next[m]) == 0;
#include <iostream> #include <cstring> #include <cstdlib> #include <cstdio> #include <algorithm> #include <cmath> #include <vector> #include <queue> #include <stack> #define LL long long #define FOR(i,x,y) for(int i=x;i<=y;i++) using namespace std; const int maxn = 1000000 + 10; char s[maxn]; int next[maxn]; int main() { while(scanf("%s", s)!=EOF) { if(strcmp(s,".") == 0) break; int m = strlen(s); next[0] = 0; next[1] = 0; for(int i=1;i<m;i++) { int j = next[i]; while(j && s[i] != s[j]) j = next[j]; next[i+1] = (s[i] == s[j]) ? j + 1 : 0; } int ans = 1; if(next[m] > 0 && m % (m - next[m]) == 0) ans = m / (m - next[m]); printf("%d\n", ans); } return 0; }
POJ 2406 Power String(KMP)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。