【KMP+DP】Count the string

KMP算法的综合练习

DP很久没写搞了半天才明白。本题结合Next[]的意义以及动态规划考察对KMP算法的掌握。

Problem Description

It is well known that AekdyCoin is good at string problems as well as number theory problems. When given a string s, we can write down all the non-empty prefixes of this string. For example: s: "abab" The prefixes are: "a", "ab", "aba", "abab" For each prefix, we can count the times it matches in s. So we can see that prefix "a" matches twice, "ab" matches twice too, "aba" matches once, and "abab" matches once. Now you are asked to calculate the sum of the match times for all the prefixes. For "abab", it is 2 + 2 + 1 + 1 = 6. The answer may be very large, so output the answer mod 10007.

Input

The first line is a single integer T, indicating the number of test cases. For each case, the first line is an integer n (1 <= n <= 200000), which is the length of string s. A line follows giving the string s. The characters in the strings are all lower-case letters.

Output

For each case, output only one number: the sum of the match times for all the prefixes of s mod 10007.

Sample Input

1
4
abab

Sample Output

6

Author

foreverlin@HNU

Source

HDOJ Monthly Contest – 2010.03.06
 
 1 #include<iostream>  //KMP+DP
 2 #include<memory.h>
 3 using namespace std;
 4 char s[200005];
 5 int Next[200005],DP[200005];    //DP[i]表示子串s[0~i]共含有以s[i]为结尾的前缀的数目
 6 int l;
 7 
 8 void GetNext(){
 9     int i=0,j=-1;
10     Next[0]=-1;
11     while(i<l){
12         if(j==-1||s[i]==s[j]){
13             i++;
14             j++;
15             Next[i]=j;
16         }
17         else
18             j=Next[j];
19     }
20 }
21 
22 int main()
23 {
24     int n,k,num;
25     cin>>n;
26     while(n--){
27         cin>>l>>s;
28         GetNext();
29         num=0;
30         memset(DP,0,sizeof(DP));
31         for(k=1;k<=l;k++){
32             DP[k]=DP[Next[k]]+1;    //s[i]结尾的前缀数就是自己本身加上以s[Next[i]]结尾的前缀数
33             num=(num+DP[k])%10007;
34         }
35         cout<<num<<endl;
36     }
37     return 0;
38 }

 

posted on 2015-02-23 16:03  0Kelvin  阅读(217)  评论(0编辑  收藏  举报

导航