HDU 2594 Simpsons’ Hidden Talents(辛普森一家的潜在天赋)
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(辛普森一家的潜在天赋)的更多相关文章
- HDU 2594 Simpsons’ Hidden Talents(KMP的Next数组应用)
Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java ...
- hdu 2594 Simpsons’ Hidden Talents KMP
Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java ...
- hdu 2594 Simpsons’ Hidden Talents(KMP入门)
Simpsons’ Hidden Talents Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java ...
- hdu 2594 Simpsons’ Hidden Talents KMP应用
Simpsons’ Hidden Talents Problem Description Write a program that, when given strings s1 and s2, fin ...
- 【HDU 2594 Simpsons' Hidden Talents】
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission( ...
- hdu 2594 Simpsons’ Hidden Talents
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 思路:将两个串连起来求一遍Next数组就行长度为两者之和,遍历时注意长度应该小于两个串中的最小值 ...
- hdu 2594 Simpsons’ Hidden Talents(扩展kmp)
Problem Description Homer: Marge, I just figured out a way to discover some of the talents we weren’ ...
- HDU 2594 Simpsons’ Hidden Talents (KMP)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 这题直接用KMP算法就能够做出来,只是我还尝试了用扩展的kmp,这题用扩展的KMP效率没那么高. ...
- HDU 2594 Simpsons’ Hidden Talents(KMP求s1前缀和s2后缀相同部分)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2594 题目大意:给两串字符串s1,s2,,找到最长子串满足既是s1的前缀又是s2的后缀,输出子串,及相 ...
随机推荐
- WM_SIZE
procedure WMSize (var Message: TWMSize); message WM_SIZE; 参数说明 wParam: Specifies the type of resizin ...
- linux设备驱动归纳总结(十一):写个简单的看门狗驱动【转】
本文转载自:http://blog.chinaunix.net/uid-25014876-id-112879.html linux设备驱动归纳总结(十一):写个简单的看门狗驱动 xxxxxxxxxxx ...
- Linux I2C工具查看配置I2C设备【转】
转自:http://blog.chinaunix.net/uid-26895763-id-3478882.html 在處理音訊相關的問題時,我通常會找個方法來讀寫codec中register的值.幸好 ...
- javap(反汇编命令)详解【转】
转自:http://blog.csdn.net/hudashi/article/details/7062668 javap是JDK自带的反汇编器,可以查看java编译器为我们生成的字节码.通过它,我们 ...
- Android常见面试题目
1.Activity 的生命周期 转自:http://kb.cnblogs.com/page/70125/ 多谢楼主分享 首先看一下Android api中所提供的Activity生命周期图(不明白的 ...
- expdp impdp中 exclude/include 的使用
exclude和include参数能够在使用expdp或impdp是对特定的对象或对象类型进行筛选或过滤.比如因工作的需要导出特定的表或不导出特定 的表.视图以及存储过程.索引.约束.授权统计信息等等 ...
- IOS5基础教程之一-----如何创建XCode项目
一.IOS的基础知识 1.只有一个应用程序正在运行.在IOS上,每一段时间内只能激活一个应用程序并在屏幕上显示. 2.只有一个窗口.只允许应用程序操作的一个窗口. 3.访问受限.只能在IOS为应用程序 ...
- CentOS安装、卸载jdk
安装:http://www.mamicode.com/info-detail-613410.html 卸载:http://sunqiusong.email.blog.163.com/blog/stat ...
- 【转】Eclipse Console 加大显示的行数,禁止弹出
转载地址:http://blog.csdn.net/leidengyan/article/details/5686691 Eclipse Console 加大显示的行数: 在 Preferences- ...
- 关于childNodes的length的问题
<ul id="ul1"> <li></li> <li></li> </ul> 这个时候如果 documen ...