zoukankan      html  css  js  c++  java
  • HDU 3336 Count the string (基础KMP)

    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.

    InputThe 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.
    OutputFor 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数组在KMP中的定义是 前缀和后缀的最大公共长度.
    设ans为所求值 ans至少为len ,遍历Next数组,每次Next长度不为0时 就说明和前缀有公共部分

    代码如下:
    
    
    #include <cstdio>
    #include <iostream>
    #include <cstring>
    using namespace std;
    typedef long long ll;
    const int N = 1000002;
    const int MOD=10007;
    int Next[N];
    char S[N], T[N];
    int slen, tlen;//注意每次一定要计算长度
    
    void getNext()
    {
        int j, k;
        j = 0; k = -1; Next[0] = -1;
        while(j < tlen)
            if(k == -1 || T[j] == T[k])
                Next[++j] = ++k;
            else
                k = Next[k];
    
    }
    
    int main()
    {
    
        int TT;
        int i, cc;
        scanf("%d",&TT);
        ll ans;
        while(TT--)
        {
            scanf("%d",&tlen);
            scanf("%s",T);
            ans=tlen;
            getNext();
            for(int i=2;i<=tlen;i++)
           {
             if(Next[i]>0){
            int h=Next[i];
            while(h>0){
            ans=(ans+1)%MOD;
            h=Next[h];
            }
           }
           }
           printf("%lld
    ",ans%MOD);
        }
        return 0;
    }
     
  • 相关阅读:
    innodb_fast_shutdown中值为1或者2的区别是?
    C语言解析日志,存储数据到伯克利DB 2
    (2010-8-31) awk内存泄漏以及缓慢的正则表达式计算速度
    C语言解析日志,存储数据到伯克利DB
    awk的接口实现方案1
    谷歌开源Gumbo:纯C语言实现的HTML5解析库
    pylint
    提高写代码的能力(转载)
    python的闭包以及闭包在设计里的意图和作用
    痛并快乐的造轮子之旅:awk访问数据库之旅
  • 原文地址:https://www.cnblogs.com/a249189046/p/7436377.html
Copyright © 2011-2022 走看看