http://poj.org/problem?id=2406题目大意:找出字串最大循环次数方法:和上一个一样  传送门#include<iostream>#include<cstdio>#include<algorithm>#include<cstring>usingnamespacestd;intne"/>

poj 2406 Power Strings(KMP)

Posted mfmdaoyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poj 2406 Power Strings(KMP)相关的知识,希望对你有一定的参考价值。

题目链接: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)的主要内容,如果未能解决你的问题,请参考以下文章

poj 2406 Power Strings

POJ - 2406 Power Strings

POJ——T 2406 Power Strings

poj 2406 Power Strings

poj2406 Power Strings

Poj 2406Power Strings