Hduoj ------ 2594 Simpsons 'den den Talents

Source: Internet
Author: User
Simpsons 'den den Talents

Time Limit: 2000/1000 MS (Java/others) memory limit: 32768/32768 K (Java/Others)
Total submission (s): 2875 accepted submission (s): 1095


Problem descriptionhomer: Marge, I just figured out a way to discover some of the talents we weren't aware we had.
MARGE: Yeah, what is it?
HOMER: Take me for example. I want to find out if I have a talent in politics, OK?
MARGE: OK.
HOMER: So I take some politician's name, say Clinton, and try to find the length of the longest prefix
In Clinton's name that is a Suffix in my name. That's how close I am to being a politician like Clinton
MARGE: Why on earth choose the longest prefix that is a suffix ???
HOMER: Well, our talents are deeply hidden within ourselves, Marge.
MARGE: So how close are you?
HOMER: 0!
MARGE: I'm not surprised.
HOMER: But you know, you must have some real math talent hidden deep in you.
MARGE: How come?
HOMER: Riann and Marjorie gives 3 !!!
MARGE: Who the heck is Riann?
HOMER: Never mind.
Write a program that, when given strings S1 and S2, finds the longest prefix of S1 that is a suffix of S2.

 

Inputinput consists of two lines. The first line contains S1 and the second line contains S2. you may assume all letters are in lowercase.

 

Outputoutput consists of a single line that contains the longest string that is a prefix of S1 and a suffix of S2, followed by the length of that prefix. if the longest such string is the empty string, then the output shocould be 0.
The lengths of S1 and S2 will be at most 50000.

 

Sample inputclintonhomerriemannmarjorie

 

Sample output0rie 3

 

Sourcehdu 2010-05 Programming Contest

Simple KMP...

Code:

 1 #include<iostream> 2 #include<cstring> 3 #include<cstdlib> 4 using namespace std; 5 const int maxn=50050; 6 char str[maxn],st[maxn]; 7 int next[maxn]; 8 int main() 9 {10     while(gets(str)!=NULL)11     {12         gets(st);13         int lena=strlen(str);14         int lenb=strlen(st);15         int i=0,j=-1;16         next[0]=-1;17         while(i<lena)18         {19             if(j==-1||str[i]==str[j])20               next[++i]=++j;21             else j=next[j];22         }23         i=j=0;24         while(i<lenb)25         {26             if(j==-1||str[j]==st[i])27             {28               i++;29               j++;30             }31            else  j=next[j];32         }33         if(j==0) printf("0\n");34         else35         printf("%s %d\n",st+lenb-j,j);;36     }37 38 }
View code

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.