http://acm.hdu.edu.cn/showproblem.php?pid=3068
最长回文
Problem Description
给出一个只由小写英文字符a,b,c...y,z组成的字符串S,求S中最长回文串的长度.
回文就是正反读都是一样的字符串,如aba, abba等
回文就是正反读都是一样的字符串,如aba, abba等
Input
输入有多组case,不超过120组,每组输入为一行小写英文字符a,b,c...y,z组成的字符串S
两组case之间由空行隔开(该空行不用处理)
字符串长度len <= 110000
两组case之间由空行隔开(该空行不用处理)
字符串长度len <= 110000
Output
每一行一个整数x,对应一组case,表示该组case的字符串中所包含的最长回文长度.
Sample Input
aaaa
abab
Sample Output
4
3
Source
Recommend
#include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <iostream> #include <algorithm> #include <iostream> #include<cstdio> #include<string> #include<cstring> #include <stdio.h> #include <string.h> using namespace std; const int N = 500009 ; int c[N] ; int n ; int p[220009] ; char a[110009] ; char b[220009]; int main() { while(~scanf("%s" , a)) { int lena = strlen(a); //对字符串进行处理,通过增加无关字符,改变偶个数的回文串 b[0] = '$'; b[1] = '#'; int l = 2 ; for(int i = 0 ; i < lena ; i++) { b[l++] = a[i]; b[l++] = '#' ; } b[l] = '