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的后缀,输出子串,及相 ...
随机推荐
- jsp struts标签迭代各种数据
首先创建一个User对象 User user=new User(); user.setUserName("张三"); user.setAge(30); User user1=new ...
- linux网站目录及Apache权限的设置
apache服务器访问权限设置禁止所有访问:Options Indexes FollowSymLinks 改为 Option None Apache单个或多个目录禁止访问方法 这种方法通常用来 ...
- 161011、oracle批量插入数据
需求:从一张表中查询数据插入到另外一张表 -- Created on 2016/10/13 by RICK declare -- Local variables here begin ') loop ...
- python3.4 or 3.x xlwt replaced with xlwt-future
Q:最近在使用python3.4处理一些生物信息数据,需要将内容保存到excel中,但是,但是,发现xlwt不能再3.4中使用,即使安装也安装不成功. 由于xlwt不兼容python3.4(x),不必 ...
- HTML5之WebSocket
在HTML5规范中,我最喜欢的Web技术就是正迅速变得流行的WebSocket API.WebSocket提供了一个受欢迎的技术,以替代我们过去几年一直在用的Ajax技术.这个新的API提供了一个方法 ...
- Linux设备驱动之semaphore机制【转】
转自:http://blog.csdn.net/xiao229404041/article/details/7031776 Linux设备驱动之semaphore机制在Linux系统中,信号号是一种重 ...
- 给NIOS II CPU添加一颗澎湃的心——sysclk的使用
给NIOS II CPU添加一颗澎湃的心——系统时钟的使用 本实验介绍如何在Qsys中添加一个定时器作为NIOS II的心跳定时器,并在NIOS II中软件编程使用该定时器. 将上一个实验watchd ...
- 做一个MVC4的项目时留下的经验--增加IPrange
/* CR#1796870 modify by v-yangwu, add a js file to control the page controls. */ $(document).ready(f ...
- C#中的属性————只谈属性
废话少说直接一剑封喉--属性是对私有字段的保护(其实是对私有字段引用的另外一种变相公开化),属性在没有任何操作的时候是无法看出其优势来,上例子 // Field used by property.pr ...
- Educational Codeforces Round 13 D:Iterated Linear Function(数论)
http://codeforces.com/contest/678/problem/D D. Iterated Linear Function Consider a linear function f ...