zoukankan      html  css  js  c++  java
  • 【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 }
  • 相关阅读:
    With在sql server 2005中的用法
    相互关联子查询在项目中的用法
    存储过程中@@Identity全局变量
    sql server 2008 5120错误
    如何启用 FILESTREAM
    表变量在存储过程或sql server中的运用
    Union ,Union ALL的用法
    数据移植(利用Ado.Net功能实现)
    Foreign Key ,NO action,Cascade的用法
    EXISTS 在SQL 中的用法
  • 原文地址:https://www.cnblogs.com/Locked-J/p/4298100.html
Copyright © 2011-2022 走看看