码迷,mamicode.com
首页 > 其他好文 > 详细

hihocoder 1032 最长回文子串

时间:2015-05-25 18:48:18      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:c++

题目链接:

hihocoder 1032





代码:

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
char str[1000105];
int fast()
{
    int start,endd,len,ans=0;
    for(int i=1;str[i];i++)
    {
        start=endd=i;
        while(str[i]==str[endd+1])
            endd++;
        i=endd;
        while(str[start-1]==str[endd+1])
            start--,endd++;
        len=endd-start+1;
        if(len>ans)
            ans=len;
    }
    return ans;
}
int main()
{
    int n;
    scanf("%d",&n);
    while(n--)
    {
        str[0]='!';
        scanf("%s",str+1);
        cout<<fast()<<endl;
    }
    return 0;
}


hihocoder 1032 最长回文子串

标签:c++

原文地址:http://blog.csdn.net/axuan_k/article/details/45971771

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!