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;
    }
  • 相关阅读:
    jdk源码调试进去形参没有值
    proxy 简化版本
    spering getBean(),IOC
    彻底清除挖矿程序
    Kworkerd恶意挖矿分析
    怎么让 Android 程序一直后台运行,像 QQ 一样不被杀死
    linux 系统下使用socket进行本地进程间通信
    linux i2c 的通信函数i2c_transfer在什么情况下出现错误
    Java Socket网络编程常见异常(转)
    踩过的坑系列之InputStream.read(byte[])方法
  • 原文地址:https://www.cnblogs.com/hua-dong/p/7640546.html
Copyright © 2011-2022 走看看