Simpsons’ Hidden Talents

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2456    Accepted Submission(s): 929

Problem 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.
 
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.
 
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.
 
Sample Input
clinton
homer
riemann
marjorie
 
Sample Output
0
rie 3
题目大意:给两个字符串S1,S2,求S1的前缀与S2的后缀有多少个相等。
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std; const int maxn=;
int n,m;
int f[maxn];
char s1[maxn],s2[maxn]; void getFail()
{
int i,j;
f[]=f[]=;
for(i=;i<m;i++)
{
j=f[i];
while(j && s2[i]!=s2[j]) j=f[j];
f[i+]=(s2[i]==s2[j]?j+:);
}
} int find()
{
int i,j=;
getFail();
for(i=;i<n;i++)
{
while(j && s1[i]!=s2[j]) j=f[j];
if(s1[i]==s2[j]) j++;
}return j;
}
int main()
{
int ans;
while(~scanf("%s %s",s2,s1))
{
n=strlen(s1);m=strlen(s2);
ans=find();
if(ans) printf("%s %d\n",s1+(n-ans),ans);
else printf("0\n");
}
return ;
}
 

最新文章

  1. C++线程池
  2. SQL起别名
  3. UIScrollView解决无法触发手势
  4. [c++基本语法]——构造函数初始化列表
  5. 在java中使用正则表达式注意的地方
  6. 百度,你家云管家能靠谱点不?替你脸红!Shame on you!
  7. YQL
  8. 普通用户之间的ssh无密码访问设置方法
  9. Kafka集群搭建 (2.11-0.9.0.1)
  10. C#轻量级通通讯组件StriveEngine —— C/S通信开源demo(2) —— 使用二进制协议 (附源码)
  11. Win7命令终端基础配色指南
  12. python 打包成tar包
  13. leetcode541
  14. wpf 进度条 下拉
  15. memcached迁移方案——记一次memcached session服务的迁移
  16. HDU 1719 Friend 规律题
  17. UNITY录制视屏解决方案 - ShareREC For Unity3D
  18. Linux命令-文件搜索命令:which
  19. oracle、sqlserver、mysql常用函数对比[to_char、to_number、to_date]
  20. java.net.ProtocolException: Server redirected too many times

热门文章

  1. mybatis association嵌套association的两级嵌套问题
  2. java基础——接口与抽象类的区别
  3. iOS 证书、真机调试、发布 App Store
  4. skynet 学习笔记-netpack模块(1)
  5. js cookie 操作
  6. 【Git版本控制】Git的merge合并分支命令
  7. LVS-nat模式-原理介绍
  8. Python爬虫系列-BeautifulSoup详解
  9. python3通过Beautif和XPath分别爬取“小猪短租-北京”租房信息,并对比时间效率(附源代码)
  10. JFinal 结合Dubbo发生的一些问题