51nod-【1089 最长回文子串 V2(Manacher算法)】

1089 最长回文子串 V2(Manacher算法)
基准时间限制:1 秒 空间限制:131072 KB 分值: 0  难度:基础题
 收藏
 关注
回文串是指aba、abba、cccbccc、aaaa这种左右对称的字符串。
输入一个字符串Str,输出Str里最长回文子串的长度。
Input
输入Str(Str的长度 <= 100000)
Output
输出最长回文子串的长度L。
Input示例
daabaac
Output示例

5

#include
#include
char str[120000],s[1000000]; 
int p[1000000];
int max(int a,int b)
{
	if(a>b)
		return a;
	return b; 
} 
int min(int a,int b)
{
	if(a>b)
		return b;
	return a; 
} 
int main()
{
	while(~scanf("%s",str))
	{
		memset(p,0,sizeof(p)); 
		int len=strlen(str),i;
		for(i=len;i>=1;--i)
		{
			s[2*i+1]='#';
			s[2*i]=str[i-1]; 
		}
		s[0]='@';s[1]='#'; 
		int mx=0,id=0,ans=0;
		len=strlen(s); 
		for(i=1;ii)
				p[i]=min(p[id*2-i],mx-i);
			else
				p[i]=1;
			while(s[i+p[i]]==s[i-p[i]])
				p[i]+=1;
			if(mx


你可能感兴趣的:(LIS&LCS,51NOD)