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

FZU 1901

时间:2014-07-27 23:26:49      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   ar   ios   har   a   return   

#include <iostream>
#include <cstring>

考查了对next数组的了解

 

 

using namespace std;
#define max 1000005
int next[max],l,ans[max];
char s[max];
void getNext(){
    int j,k;
    next[0]=-1;
    j=0;k=-1;
    while(j<l){if(k==-1||s[j]==s[k])    {
            j++;
            k++;
            next[j]=k;
        }
        else
            k=next[k];
    }
}
int main(){
    int t;
    cin>>t;
    int game=0;
    while(t--){
        game++;
        cin>>s;
        l=strlen(s);
        getNext();
        int t=next[l];
        int cnt=0;
        while(t){
            ans[cnt++] = l-t;
            t=next[t];
        }
         ans[cnt++] = l;

        cout<<"Case #"<<game<<": "<<cnt<<endl;
        for(int i = 0;i < cnt-1;i++)cout<<ans[i]<<" ";
        cout<<ans[cnt-1]<<endl;

    }
    return 0;
}

FZU 1901,布布扣,bubuko.com

FZU 1901

标签:os   io   for   ar   ios   har   a   return   

原文地址:http://www.cnblogs.com/Mr-Xu-JH/p/3871955.html

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