题意:给一个字符串,求在这个串末尾最少加多少个字符可以构成一个以任意串为循环节构成的循环串。
思路:作为循环节的子串一定是原串的前缀,构成循环穿要将后缀补成循环节。可以利用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;
}