基准时间限制:1 秒 空间限制:131072 KB 分值: 0
难度:基础题
回文串是指aba、abba、cccbccc、aaaa这种左右对称的字符串。
输入一个字符串Str,输出Str里最长回文子串的长度。
Input
输入Str(Str的长度 <= 100000)
Output
输出最长回文子串的长度L。
Input示例
daabaac
Output示例
5
#include<stdio.h>
#include<string.h>
char s[200010];int p[200010];
int min(int a,int b)
{
return a<b?a:b;
}
void f()
{
int l=strlen(s);
for(int i=l;0<i;i--)
{
s[i*2+1]='#';
s[i*2]=s[i-1];
}
s[0]='*',s[1]='#';
}
int Manacher()
{
f();
int mx = 0, id = 0,max=1;
memset(p, 0, sizeof(p));
for (int i = 1; s[i] != '\0' ; i++)
{
p[i] = mx > i ? min(p[2 * id - i], mx - i) : 1;
while (s[i + p[i]] == s[i - p[i]])
p[i]++;
if (i + p[i] > mx)
{
mx = i + p[i];
id = i;
}
max=max>p[i]?max:p[i];
}
return max-1;
}
int main()
{
int l,i;
while(scanf("%s",s)!=EOF)
printf("%d\n",Manacher());
return 0;
}