HDU 2594 Simpsons Hidden Talents(辛普森一家的潜在天赋)

Time Limit: 2000/1000 MS (Java/Others)

Memory Limit: 32768/32768 K (Java/Others)

【Description】

【题目描述】

Homer: 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: Riemann and Marjorie gives 3!!!

Marge: Who the heck is Riemann?

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.

霍默: 玛姬, 我突然想到有个办法可以发掘我们的潜力。

玛姬: 厄, 那是啥?

霍默: 比如我想知道自己是否有潜力蹚官场...

玛姬: 恩。

霍默: 因此我列了写政客的名字,比如Clinton,然后找到他名字的前缀与我名字后缀相匹配的最大长度。这表示我有多大的希望成为和Clinton一样的政客。

玛姬: 那么究竟为什么比对最长前缀后缀???

霍默: 毕竟大家都是真人不露相,玛姬。

玛姬: 那你的结果呢?

霍默: 0!

玛姬: 意料之中。

Homer: 但我知道,你肯定有潜在的数学天赋。

玛姬: 哪来的?

霍默: Riemann 和 Marjorie 匹配了 3!!!

玛姬: 黎曼是谁?

霍默: 不懂。

敲一个程序,对于给定的字符串s1与 s2,找出s1前缀与s2后缀的最大匹配长度。

【Input】

【输入】

Input consists of two lines. The first line contains s1 and the second line contains s2. You may assume all letters are in lowercase.

输入有两行。第一行是s1,第二行是s2。你可以认为只有小写字母。

【Output】

【输出】

Output 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 should be 0.

The lengths of s1 and s2 will be at most 50000.

输出一行,包括最长s1前缀与s2后缀匹配的字符串,并输出前缀的长度。如果字符串不存在,输出0即可。

s1与s2的长度小于50000。

【Sample Input - 输入样例】

【Sample Output - 输出样例】

clinton

homer

riemann

marjorie

0

rie 3

【题解】

KMP比较部分的变形,利用next数组前移s1,匹配s2的时候为保存最后的匹配长度即可。

【代码 C++】

 #include<cstdio>
#include<cstring>
#define mx 50005
char s1[mx], s2[mx];
int nextS1[mx], optS2[mx], s1ED, s2ED;
void rdy(){
int i = , j;
nextS1[] = j = -;
while (i < s1ED){
if (j == - || s1[i] == s1[j]) nextS1[++i] = ++j;
else j = nextS1[j];
}
}
int count(){
int i = , j = ;
while (i < s2ED){
if (j == - || s2[i] == s1[j]) optS2[++i] = ++j;
else j = nextS1[j];
}
return optS2[s2ED];
}
int main(){
int len, i;
while (~scanf("%s%s", s1, s2)){
s1ED = strlen(s1); s2ED = strlen(s2);
rdy();
if (len = count()){
for (i = ; i < len; putchar(s1[i++]));
printf(" %d\n", len);
}
else puts("");
}
return ;
}

HDU 2594 Simpsons’ Hidden Talents(辛普森一家的潜在天赋)的更多相关文章

  1. HDU 2594 Simpsons’ Hidden Talents(KMP的Next数组应用)

    Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java ...

  2. hdu 2594 Simpsons’ Hidden Talents KMP

    Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java ...

  3. hdu 2594 Simpsons’ Hidden Talents(KMP入门)

    Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java ...

  4. hdu 2594 Simpsons’ Hidden Talents KMP应用

    Simpsons’ Hidden Talents Problem Description Write a program that, when given strings s1 and s2, fin ...

  5. 【HDU 2594 Simpsons' Hidden Talents】

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission( ...

  6. hdu 2594 Simpsons’ Hidden Talents

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 思路:将两个串连起来求一遍Next数组就行长度为两者之和,遍历时注意长度应该小于两个串中的最小值 ...

  7. hdu 2594 Simpsons’ Hidden Talents(扩展kmp)

    Problem Description Homer: Marge, I just figured out a way to discover some of the talents we weren’ ...

  8. HDU 2594 Simpsons’ Hidden Talents (KMP)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 这题直接用KMP算法就能够做出来,只是我还尝试了用扩展的kmp,这题用扩展的KMP效率没那么高. ...

  9. HDU 2594 Simpsons’ Hidden Talents(KMP求s1前缀和s2后缀相同部分)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 题目大意:给两串字符串s1,s2,,找到最长子串满足既是s1的前缀又是s2的后缀,输出子串,及相 ...

随机推荐

  1. 视频处理控件TVideoGrabber部分技术问题解答

    TVideoGrabber是一个功能全面.易于使用的视频捕捉工具和多媒体播放器,本文搜集了一些TVideoGrabber的技术问答,并针对于有的朋友遇到的疑难给出了解答. 一.在TVideoGrabb ...

  2. python爬虫学习记录

    爬虫基础 urllib,urllib2,re都是python自带的模块 urllib,urllib2区别是urllib2可以接受一个Request类的实例来设置url请求的headers,即可以模拟浏 ...

  3. python DB.fetchall()--获取数据库所有记录列表

    查询到的数据格式为列表: 多个元素的列表:

  4. tomcat启动startup.bat一闪而过 转

    遇到很多次运行startup.bat后,一个窗口一闪而过的问题,但是从来没去纠正怎样修改配置才是正确的,现在从网上查阅的资料整理如下:tomcat在启动时,会读取环境变量的信息,需要一个CATALIN ...

  5. crontab 日志备份定时任务

    -l选项,查看当前用户的所有定时任务: [xiluhua@vm-xiluhua][/home]$ crontab -l * * * * * /home/xiluhua/shell_script/log ...

  6. Codeforces 741B:Arpa's weak amphitheater and Mehrdad's valuable Hoses(01背包+并查集)

    http://codeforces.com/contest/741/problem/B 题意:有 n 个人,每个人有一个花费 w[i] 和价值 b[i],给出 m 条边,代表第 i 和 j 个人是一个 ...

  7. SURF

    推荐:http://www.cnblogs.com/tornadomeet/archive/2012/08/17/2644903.html SURF-Speeded Up Robust Feature ...

  8. [ios][opengles]opengles在ios上的透明问题

    关于透明,OpenGL/ES 中可以通过 blend (混色) 来简单实现,混色的基本原理就是把要绘制的物体的颜色与屏幕上已经绘制好的颜色以一定比例来混合,最后的颜色看上去就像半透明一样.要使用混合先 ...

  9. [c++][语言语法]函数模板和模板函数 及参数类型的运行时判断

    参考:http://blog.csdn.net/beyondhaven/article/details/4204345 参考:http://blog.csdn.net/joeblackzqq/arti ...

  10. YTU 2973: C语言习题5.25--文件操作2

    2973: C语言习题5.25--文件操作2 时间限制: 1 Sec  内存限制: 128 MB 提交: 242  解决: 105 题目描述 文本文件score.dic 中存储了n名学生的信息(班级编 ...