1. 程式人生 > >[HDU3336]Count the string(KMP+DP)

[HDU3336]Count the string(KMP+DP)

CP solution ble mes sin sca 表示 ans sizeof

Solution

不穩定的傳送門

對KMP的靈活應用

設dp[i]表示前[1,i]的答案

那麽dp[i]=dp[p[i]]+1,p[i]為失配函數

Code

#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;

const int mo=10007;
int n,T,dp[200010],p[200010],Ans;
char s[200010]; 

int main(){
	scanf("%d",&T);
	while(T--){
		scanf("%d\n%s",&n,s+1);Ans=0;
		memset(p,0,sizeof(p));
		memset(dp,0,sizeof(dp));
		for(int i=2,j=0;i<=n;++i){
			while(j>0&&s[i]!=s[j+1]) j=p[j];
			if(s[i]==s[j+1]) ++j;
			p[i]=j;
		}
		for(int i=1;i<=n;++i) Ans=(Ans+(dp[i]=dp[p[i]]+1))%mo;
		printf("%d\n",Ans);
	}
	return 0;
}

[HDU3336]Count the string(KMP+DP)