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

poj 2406 Power Strings

时间:2014-07-26 15:28:52      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:poj   kmp   

链接:poj 2406

题意:求给定字符串最大循环次数

思路:根据KMP算法的next数组知,一个长度为n的字符串,

if(n%(n-next[n])==0)

最小循环长度为  L=n-next[n];

最大循环次数为  S=n/L=n/(n-next[n]);

#include<stdio.h>
#include<string.h>
int next[1001010]={-1},n;
char s[1001010];
int getnext()
{
    int i=0,j=-1;
    while(i<n){
        if(j==-1||s[i]==s[j]){
            i++;
            j++;
            next[i]=j;
        }
        else
            j=next[j];
    }
    if(n%(n-next[n])==0)
        return n/(n-next[n]);
    return 1;
}
int main()
{
    while(scanf("%s",s)!=EOF){
        if(strcmp(s,".")==0)
            break;
        n=strlen(s);
        n=getnext();
        printf("%d\n",n);
    }
    return 0;
}


poj 2406 Power Strings,布布扣,bubuko.com

poj 2406 Power Strings

标签:poj   kmp   

原文地址:http://blog.csdn.net/acm_code/article/details/38138779

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