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

[HDU3336]Count the string(KMP+DP)

时间:2018-04-20 22:10:43      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:hdu   cst   printf   tar   nbsp   memset   ble   int   href   

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)

标签:hdu   cst   printf   tar   nbsp   memset   ble   int   href   

原文地址:https://www.cnblogs.com/void-f/p/8893624.html

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