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

F - The Minimum Length

时间:2018-10-31 11:23:57      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:name   size   tps   nim   border   display   content   height   contain   

技术分享图片
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int len;
char s[1000010];
int net[1000010];
void getnet(){
    memset(net,0,sizeof(net));
    net[0]=-1;
    int k=-1,j=0;
    while(j<len){
        if(k==-1||s[k]==s[j]){
            j++;k++;
            net[j]=k;
        }
        else k=net[k];
    }
}
int main(){
    while(scanf("%s",s)!=EOF){
        len=strlen(s);
        getnet();
        int tmp=len-net[len];
        printf("%d\n",tmp);
    }
}
View Code

 

 

F - The Minimum Length

标签:name   size   tps   nim   border   display   content   height   contain   

原文地址:https://www.cnblogs.com/cangT-Tlan/p/9881781.html

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