码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 3336 Count the string

时间:2014-08-22 12:20:16      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:style   io   for   ar   amp   size   sp   on   

题解:利用next数组来保存前缀位置,递推求解。

#include <cstdio>
#include <cstring>
char pat[200005];
int next[200005],M,f[200005];
const int MOD=10007;
int getnext(){
    int i=1,j=0;next[1]=0;
    while(i<M){
        if(j==0||pat[j]==pat[i])next[++i]=++j;
        else j=next[j];
    }
}
int main(){
    int T,i; scanf("%d",&T);
    while(T--){
        scanf("%d",&M);
        scanf("%s",pat+1);
        pat[0]=‘#‘; M=strlen(pat);
        pat[M]=‘*‘; getnext(); f[1]=0;
        int s=0; for(i=2;i<=M;i++)(s+=(f[i]=f[next[i]]+1))%=MOD;
        printf("%d\n",s);
    }
    return 0;
}

HDU 3336 Count the string,布布扣,bubuko.com

HDU 3336 Count the string

标签:style   io   for   ar   amp   size   sp   on   

原文地址:http://www.cnblogs.com/forever97/p/3928769.html

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