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;
    }
  • 相关阅读:
    ASP.NET
    jquery
    rowcommand事件中获取控件
    Net 自定义Excel模板导出数据
    代码阅读方法与实践---阅读笔记06
    代码阅读方法与实践---阅读笔记05
    代码阅读方法与实践---阅读笔记04
    软件需求十步走---阅读笔记03
    软件需求十步走---阅读笔记02
    软件需求十步走---阅读笔记01
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7640546.html
Copyright © 2011-2022 走看看