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

HDU - 3746

时间:2018-02-09 22:39:13      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:c++   blog   htm   com   build   logs   str   ==   html   

https://www.cnblogs.com/chenxiwenruo/p/3546457.html

int nxt[maxn];
char P[maxn];
void buildNext(int &m){
    m=strlen(P+1);
    int j=0;
    nxt[1]=0;
    rep(i,2,m){
        while(j>0&&P[i]!=P[j+1]) j=nxt[j];
        if(P[i]==P[j+1])j++;
        nxt[i]=j;
    }
}
int main(){
    int t=read();
    while(t--){
        s1(P);
        int m;
        buildNext(m);
        int cir=m-nxt[m];
        if(cir!=m&&m%cir==0) println(0);//
        else println(cir-nxt[m]%cir);
    }
    return 0;
}

HDU - 3746

标签:c++   blog   htm   com   build   logs   str   ==   html   

原文地址:https://www.cnblogs.com/caturra/p/8436656.html

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