HDU3746 Cyclic Nacklace(KMP)

题意:给一个字符串,求在这个串末尾最少加多少个字符可以构成一个以任意串为循环节构成的循环串。


思路:作为循环节的子串一定是原串的前缀,构成循环穿要将后缀补成循环节。可以利用next数组的性质,tmp = (len - 1) - next[len - 1]; 此时得到的tmp就是循环节的长度。

如果len % tmp == 0; 那么原串就是个循环串,不需要添加;

否则需要将后缀补成一个循环节,添加 (tmp - len % tmp) 个字符。


#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<vector>
#include<map>
#include<algorithm>
using namespace std;
const int inf = 0x3f3f3f3f;
const int mod = 1000000007;
const int maxn=1000005;
typedef long long ll;
void get_next(char s[], int next[]){
    int len = strlen(s);
    next[0] = -1;
    int index;
    for(int i=1; i<len; ++i){
        index = next[i - 1];
        while(index >= 0 && s[i] != s[index + 1]){
            index = next[index];
        }
        if(s[i] == s[index + 1]){
            next[i] = index + 1;
        } else {
            next[i] = -1;
        }
    }
}
int nxt[maxn];
char str[maxn];
int main(){
    int t;
    scanf("%d", &t);
    while(t--){
        scanf("%s", str);
        get_next(str, nxt);
        int len = strlen(str);
        if(nxt[len - 1] == -1){
            printf("%d\n", len);
        } else {
            int tmp = len - 1 - nxt[len - 1];
            if(len % tmp == 0){
                puts("0");
            } else {
                printf("%d\n", tmp - len % tmp);
            }
        }
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值