码迷,mamicode.com
首页 > 其他好文 > 详细

poj 2406 Power Strings(KMP)

时间:2017-07-02 17:49:11      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:char   ==   printf   stream   tracking   mod   char s   ace   namespace   

题目链接: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)

标签:char   ==   printf   stream   tracking   mod   char s   ace   namespace   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/7106540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!