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

poj3974 最长回文串 exkmp

时间:2014-06-27 13:46:53      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:des   style   class   blog   code   http   

Palindrome
Time Limit: 15000MS   Memory Limit: 65536K
Total Submissions: 3695   Accepted: 1338

Description

Andy the smart computer science student was attending an algorithms class when the professor asked the students a simple question, "Can you propose an efficient algorithm to find the length of the largest palindrome in a string?" 

A string is said to be a palindrome if it reads the same both forwards and backwards, for example "madam" is a palindrome while "acm" is not. 

The students recognized that this is a classical problem but couldn‘t come up with a solution better than iterating over all substrings and checking whether they are palindrome or not, obviously this algorithm is not efficient at all, after a while Andy raised his hand and said "Okay, I‘ve a better algorithm" and before he starts to explain his idea he stopped for a moment and then said "Well, I‘ve an even better algorithm!". 

If you think you know Andy‘s final solution then prove it! Given a string of at most 1000000 characters find and print the length of the largest palindrome inside this string.

Input

Your program will be tested on at most 30 test cases, each test case is given as a string of at most 1000000 lowercase characters on a line by itself. The input is terminated by a line that starts with the string "END" (quotes for clarity). 

Output

For each test case in the input print the test case number and the length of the largest palindrome. 

Sample Input

abcbabcbabcba
abacacbaaaab
END

Sample Output

Case 1: 13
Case 2: 6




题意:求最长回文子串


解法:当然,有很多种求法,什么SA,什么manacher,介于我最近在搞扩展kmp,就发个扩展kmp的吧。

讲解网址(不是我写的)http://hi.baidu.com/tcet030840zxp/item/71fd90024b1f92cd90571809

 

#include<cstdio>
#include<cstdlib>
#include<algorithm>
#include<cmath>
#include<cstring>

using namespace std;

int s[1000111];
int s1[1000111],s2[1000111],s3[1000111],s4[1000111];
int a[1000111],b[1000111],exEast[1000111],exWest[1000111];
int n,xzq,t;
char c;
bool p;

void Read()
{
    n=0;
    while(c=getchar(),(c<a||c>z)&&(c<A||c>Z));
    if(c==E)p=false;
    s[++n]=c;
    while(c=getchar(),c>=a&&c<=z)s[++n]=c;
}

void Exkmp(int *s1,int *s2,int n1,int n2)
{
    int len,k,i,l;
    len=0;
    for(i=2;i<=n1;i++){
        if(len<i){
            l=0;
            while(s1[i+l]==s1[1+l]&&i+l<=n1)l++;
            a[i]=l;
        }
        else{
            if(a[i-k+1]<len-i+1)a[i]=a[i-k+1];
            else{
                l=len-i+1;
                while(s1[i+l]==s1[1+l]&&i+l<=n1)l++;
                a[i]=l;
            }
        }
        if(i+a[i]-1>len){
            len=i+a[i]-1;
            k=i;
        }
    }
    len=0;
    for(i=1;i<=n2;i++){
        if(len<i){
            l=0;
            while(s2[i+l]==s1[1+l]&&i+l<=n2&&1+l<=n1)l++;
            b[i]=l;
        }
        else{
            if(a[i-k+1]<len-i+1)b[i]=a[i-k+1];
            else{
                l=len-i+1;
                while(s2[i+l]==s1[1+l]&&i+l<=n2&&1+l<=n1)l++;
                b[i]=l;
            }
        }
        if(i+b[i]-1>len){
            len=i+b[i]-1;
            k=i;
        }
    }
}

int Work(int l,int r)
{
    if(l==r)return 1;
    int mid=(l+r)/2;
    int x,z,q,i,n1,n2,k;
    x=0;
    z=0;
    q=0;
    x=Work(l,mid);
    z=Work(mid+1,r);
    if(x>z)q=x;
    else q=z;    
    n1=mid-l+1;
    for(i=l;i<=mid;i++){
        k=i-l+1;
        s1[k]=s[i];
        s3[n1-k+1]=s1[k];
    }
    n2=r-mid;
    for(i=mid+1;i<=r;i++){
        k=i-mid;
        s2[k]=s[i];
        s4[n2-k+1]=s2[k];
    }
    Exkmp(s3,s1,n1,n1);
    for(i=1;i<=n1;i++)exEast[i]=b[i];
    Exkmp(s2,s3,n2,n1);
    for(i=1;i<=n1;i++)exWest[n1-i+1]=b[i];
    exWest[0]=0;
    if(exWest[n1]*2>q)q=exWest[n1]*2;
    for(i=1;i<=n1;i++){
        if(exEast[i]*2>=n1-i+1){
            if(n1-i+1+exWest[i-1]*2>q)q=n1-i+1+exWest[i-1]*2;
        }
    }
    Exkmp(s3,s2,n1,n2);
    for(i=1;i<=n2;i++)exEast[i]=b[i];
    Exkmp(s2,s4,n2,n2);
    for(i=1;i<=n2;i++)exWest[n2-i+1]=b[i];
    if(exEast[1]*2>q)q=exEast[1]*2;
    exEast[n2+1]=0;
    for(i=1;i<=n2;i++){
        if(exWest[i]*2>=i){
            if(i+exEast[i+1]*2>q)q=i+exEast[i+1]*2;
        }
    }
    return q;
}

int main()
{
    p=true;
    t=0;
    while(true){
        t++;
        memset(s,0,sizeof(s));
        Read();
        if(p==false)break;
        xzq=Work(1,n);
        printf("Case %d: %d\n",t,xzq);
    }
}

 

poj3974 最长回文串 exkmp,布布扣,bubuko.com

poj3974 最长回文串 exkmp

标签:des   style   class   blog   code   http   

原文地址:http://www.cnblogs.com/applejxt/p/3810498.html

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