码迷,mamicode.com
首页 > 编程语言 > 详细

HDU 3336 Count the string(KMP算法next数组的应用)

时间:2015-02-03 11:03:34      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:acm   kmp   

解题思路:

 求前缀数组出现的次数之和,next[i] > 0 表示长度为next[i]的前缀又出现了一次。

#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <vector>
#include <queue>
#include <stack>
#define LL long long
#define FOR(i,x,y) for(int i=x;i<=y;i++)
using namespace std;
const int maxn = 200000 + 10;
const int MOD = 10007;
char s[maxn];
int next[maxn];
int main()
{
    int T;
    scanf("%d", &T);
    while(T--)
    {
        int m;
        scanf("%d", &m);
        scanf("%s", s);
        next[0] = 0; next[1] = 0;
        for(int i=1;i<m;i++)
        {
            int j = next[i];
            while(j && s[i] != s[j]) j = next[j];
            next[i+1] = (s[i] == s[j]) ? j + 1 : 0;
        }
        int ans = m;
        for(int i=1;i<=m;i++)
        {
            if(next[i] > 0) ans = (ans + 1) % MOD;
        }
        printf("%d\n", ans);
    }
    return 0;
}

HDU 3336 Count the string(KMP算法next数组的应用)

标签:acm   kmp   

原文地址:http://blog.csdn.net/moguxiaozhe/article/details/43446837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!