对给定的字符串,本题要求你输出最长对称子串的长度。例如,给定Is PAT&TAP symmetric?,最长对称子串为s PAT&TAP s,于是你应该输出11。
输入格式:
输入在一行中给出长度不超过1000的非空字符串。
输出格式:
在一行中输出最长对称子串的长度。
输入样例:
Is PAT&TAP symmetric?
输出样例:
11
#include<bits/stdc++.h>
using namespace std;
int main()
{
string str;
int maxn=0;
getline(cin,str);
for(int i=0;i<str.length();i++)
{
for(int j=0;i-j>=0&&i+j<str.length();j++)
{
if(str[i-j]!=str[i+j])
break;
maxn=max(2*j+1,maxn);
}
for(int j=0;i-j>=0&&i+j+1<str.length();j++)
{
if(str[i-j]!=str[i+j+1])
break;
maxn=max(2*(j+1),maxn);
}
}
cout<<maxn;
return 0;
}