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

UVA 10298 - Power Strings(KMP)

时间:2014-08-02 18:21:43      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   io   for   2014   

UVA 10298 - Power Strings

题目链接

题意:本意其实就是,给定一个字符串,求出最小循环节需要几次循环出原字符串

思路:利用KMP中next数组的性质,n - next[n]就是最小循环节,然后n / 循环节就是答案

代码:

#include <cstdio>
#include <cstring>

const int N = 1000005;
char str[N];
int next[N];

void getnext() {
    int n = strlen(str);
    next[0] = next[1] = 0;
    int j = 0;
    for (int i = 2; i <= n; i++) {
	while (j && str[i - 1] != str[j]) j = next[j];
	if (str[i - 1] == str[j]) j++;
	next[i] = j;
    }
    printf("%d\n", n / (n - next[n]));
}

int main() {
    while (~scanf("%s", str) && strcmp(str, ".") != 0) {
	getnext();
    }
    return 0;
}


UVA 10298 - Power Strings(KMP),布布扣,bubuko.com

UVA 10298 - Power Strings(KMP)

标签:style   blog   http   color   os   io   for   2014   

原文地址:http://blog.csdn.net/accelerator_/article/details/38350199

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