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

poj 2406 Power Strings

时间:2014-12-06 15:21:23      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   strong   

题目链接:http://poj.org/problem?id=2406

 

思路

1.理解Kmp算法的next数组的意义;

2.对于字符A[i],i-next[i]等价于在字符串中存在一个长度为i-next[i]的重复子串;

3.当 i % (i - next[i]) == 0 等价于字符串由 (i/(i-next[i])) 个长度为 i - next[i]的子串连接组成;

 

代码: 

#include <iostream>
#include <string>
using namespace std;

const int MAX_N = 1000000 + 10;
char S[MAX_N];
int Next[MAX_N];

int GetNext(char P[], int next[])
{
    int i = 0, j = -1;
    int len = strlen(P);

    if (len <= 0)
        return 0;

    next[0] = -1;
    while (i <= len)
    {
        if (j == -1 || P[i] == P[j])
            next[++i] = ++j;
        else
            j = next[j];
    }
}

int main()
{
    int len;
    int lenSubstr;

    while (scanf("%s", S) != EOF && strcmp(S, "."))
    {
        len = strlen(S);
        GetNext(S, Next);
        lenSubstr = len - Next[len];

        if (len % lenSubstr == 0)
            printf("%d\n", len / lenSubstr);
        else
            printf("1\n");
    }

    return 0;
}

 

poj 2406 Power Strings

标签:style   blog   http   io   ar   color   os   sp   strong   

原文地址:http://www.cnblogs.com/tallisHe/p/4148247.html

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