标签:kmp
Time Limit: 3000MS | Memory Limit: 65536K | |
Total Submissions: 33595 | Accepted: 13956 |
Description
Input
Output
Sample Input
abcd aaaa ababab .
Sample Output
1 4 3
Hint
比赛的时候看错题意了55555
求出next数组,判断最后一位除以(最后一位减去next【最后一位】)的长度,如果大于1,输出商,否则1
代码:
#include <cstdio> #include <cstring> #include <vector> #include <stack> #include <queue> #include <algorithm> using namespace std; const int M = 1000010; const int INF = 0x3f3f3f3f; char s[M]; int next[M]; void getnext(){ int len = strlen(s); next[0] = -1; int i = 0, j = -1; while(i <len){ if(j == -1||s[i] == s[j]){ ++i;++j; next[i] = j; } else j = next[j]; } } int main(){ while(gets(s), s[0] != '.'){ getnext(); int max = 0; int i = 0; /*for(; i <= strlen(s); i ++){ int temp = i-next[i]; if(i%temp == 0&&max < i/temp){ max = i/temp; } }*/ int temp = strlen(s)-next[strlen(s)]; if(strlen(s)%temp == 0) max = strlen(s)/temp; if(max > 1) printf("%d\n", max); else printf("%d\n", 1); } return 0; }
poj 2406 Power Strings 【KMP的应用】
标签:kmp
原文地址:http://blog.csdn.net/shengweisong/article/details/41649095