zoukankan      html  css  js  c++  java
  • HDU3336 Count the string

    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

    题意:

    求字符串的前缀在字符串里出现多少次。

    思路:

    主要就是要知道next数组的作用,就可以计算每个i结尾的满足题意的串个数,相加即可。

    #include<cstdio>
    #include<cstdlib>
    #include<memory>
    #include<cstring>
    #include<iostream>
    using namespace std;
    const int maxn=200010;
    const int Mod=10007;
    int Next[maxn],ans,n;
    char c[maxn];
    void KMP()
    {
        ans=0;Next[1]=0;
        for(int i=2,k=0;i<=n;i++){
            while(k&&c[i]!=c[k+1]) k=Next[k];
            if(c[i]==c[k+1]) k++;
            Next[i]=k;
            int tmp=Next[i];
            while(tmp){
                ans++;
                tmp=Next[tmp];
            }
        }
        printf("%d
    ",(ans+n)%Mod);
    }
    int main()
    {
        int T;scanf("%d",&T);
        while(T--){
            scanf("%d",&n);
            scanf("%s",c+1);
            KMP();
        }
        return 0;
    }
  • 相关阅读:
    Markdown
    异异还原
    程序和算法
    运算符
    Java复习1
    复习总结
    为什么Byte是8位,但是却只能表示到127,而不是255?
    笔记的认识
    笔记本触摸板
    电脑热键
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7640546.html
Copyright © 2011-2022 走看看