HDU 3746 数据结构之KMP

点击打开链接

题意:给T组数据,每组一个字符串,问最少添加多少个字符可以使这个串变成一个子串连续出现的串

思路:利用KMP的next数组进行变换,next数组保存的是目前为止与字符串从头开始的匹配的程度,也可以看成从头开始的位置,所以如果Next数组最后一个为0,则需要在添加一个这样的串才能匹配成功,不然ans=len-Next[len]代表的是不能匹配的后面的串的长度,如果这个长度可以被len取余,则说明这个串已经匹配好了,不然就是这个长度减去取余后的数

#include 
#include 
#include 
#include 
#include 
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
const int maxn=200010;
const int mod=10007;
char str1[maxn];
int Next[maxn];
void makenext(int m){
    int i=0,j=-1;
    Next[i]=-1;
    while(i

你可能感兴趣的:(数据结构,KMP,线段树)