51NOD-01089 最长回文子串 V2(Manacher算法)
Posted ONION_CYC
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了51NOD-01089 最长回文子串 V2(Manacher算法)相关的知识,希望对你有一定的参考价值。
【算法】回文树
#include<cstdio> #include<algorithm> #include<cstring> using namespace std; const int maxn=100010; struct trees{int len,fail,t[260];}t[maxn]; char s[maxn]; int n,len,l,sz,ans; int getfail(int x) { while(s[len-t[x].len-1]!=s[len])x=t[x].fail; return x; } void tree_work() { int x=s[++len]; l=getfail(l); if(!t[l].t[x]) { sz++; t[sz].len=t[l].len+2; if(t[sz].len>ans)ans=t[sz].len; t[sz].fail=t[getfail(t[l].fail)].t[x];//偏小 t[l].t[x]=sz; } l=t[l].t[x]; } int main() { scanf("%s",s+1); n=strlen(s+1); sz=1; s[0]=-1;// t[0].len=0;t[1].len=-1; t[0].fail=t[1].fail=1; len=l=ans=0; for(int i=1;i<=n;i++)tree_work(); printf("%d",ans); return 0; }
以上是关于51NOD-01089 最长回文子串 V2(Manacher算法)的主要内容,如果未能解决你的问题,请参考以下文章
51nod 1089 最长回文子串 V2(Manacher算法)