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

Cyclic Nacklace HDU 3746 KMP 循环节

时间:2019-10-31 21:26:17      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:思路   csdn   namespace   tail   net   长度   重点   class   main   

Cyclic Nacklace HDU 3746 KMP 循环节

题意

给你一个字符串,然后在字符串的末尾添加最少的字符,使这个字符串经过首尾链接后是一个由循环节构成的环。

解题思路

next[len]-len的差即是循环部分的长度。 这个是重点。这个题目自己开始没有想明白,看的博客,推荐这个

代码实现

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1e5+7;
char str[maxn];
int nt[maxn];
void getnext(char *p, int len)
{
    int i=0, k=-1;
    nt[0]=-1;
    while(i<len)
    {
        if(k==-1 || str[i]==str[k])
            nt[++i]=++k;
        else 
            k=nt[k];
    }
}
int main()
{
    int t, len, i, cnt=0;
    scanf("%d", &t);
    while(t--)
    {
        scanf("%s", str);
        len=strlen(str);
        for(int i=0; i<=len; i++)
            nt[i]=0;
        getnext(str, len);
        if(nt[len]==0)
            printf("%d\n", len);
        else if(len%(len-nt[len])==0)
            printf("0\n");
        else 
        {   
            int len1=len-nt[len];//最小循环节的长度
            printf("%d\n", len1-len%len1); 
        }
    }
    return 0;
}

Cyclic Nacklace HDU 3746 KMP 循环节

标签:思路   csdn   namespace   tail   net   长度   重点   class   main   

原文地址:https://www.cnblogs.com/alking1001/p/11773672.html

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