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

luogu P1723 高手过愚人节

时间:2019-03-09 20:31:05      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:size   就是   style   strlen   clu   ace   统计   org   https   

打算下周讲课就将Manacher了

所以百度了一下相关题目,发现了一道千古好题

这道题没想到是一道模板题,模板中的模板


 

简要说一下思路,我们先复制一遍模板(甚至变量都不用改

然后唯一的区别就是要求的是最长连续回文子串长度

那么我们就在Manacher函数里在最后统计一下最大值就行

优秀的代码在这里

#include<bits/stdc++.h>
using namespace std;
const int N = 21000000;
char s[N],str[N];
int p[N],n;
int init(){
    int len=strlen(s);
    str[0]=@,str[1]=#;
    int j=1;
    for(int i=0;i<len;++i){
        str[++j]=s[i];
        str[++j]=#;
    }
    str[++j]=\0;
    return j;
}
int Manacher(){
    int id=1,mx=1,maxn=0,len=init();
    for(int i=1;i<len;++i){
        if(i<mx) p[i]=min(p[id*2-i],mx-i);
        else p[i]=1;
        while(str[i-p[i]]==str[i+p[i]]) p[i]++;
        if(i+p[i]>mx){
            mx=i+p[i];
            id=i;
        }
        maxn=max(maxn,p[i]-1);//敲黑板,唯一的区别
    }
    return maxn;
}
int main(){
    cin>>n;
    while(n--){
        memset(p,0,sizeof(p));
        cin>>s;
        cout<<Manacher()<<endl;
    }
    return 0;
}

 

luogu P1723 高手过愚人节

标签:size   就是   style   strlen   clu   ace   统计   org   https   

原文地址:https://www.cnblogs.com/xmex/p/10502668.html

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