POJ 2752 Seek the Name,Seek the Fame(KMP,前缀与后缀相等)
Seek the Name,Seek the Fame
过了个年,缓了这么多天终于开始刷题了,好颓废(-.-) 我发现在家真的很难去学习,因为你还要陪父母,干活,做家务等等 但是还是不能浪费时间啊,要利用所有的时间去学习啊
【题目链接】Seek the Name,Seek the Fame
【题目类型】KMP
&题意:
给你一个字符串S。假如为ababcababababcabab 找出这个字符串中所有的前缀等于后缀的子串,输出它们的长度。
第一个为a,最后一个为b,所以1不行。
前两个为ab,最后二个也为ab,所以2行。
前三个为aba,后三个为bab,所以3不行。
以此类推... 找出全部
当然,全部字符串也是可以的。因为ababcababababcabab和ababcababababcabab肯定是一样的。
&题解:
参考:http://blog.csdn.net/niushuai666/article/details/6968507
这道题也是next数组的一个应用。
既然是求模式串匹配,所以要先求出模式串的next数组。这是第一步。
然后我们开始分析怎么用next数组来完成查找前缀后缀的匹配。
我们还是用上面那个字符串为例子来说明一下。
下标   0  1  2  3  4  5  6  7  8  9 10 11 12 13 14 15 16 17 18
模式串   a  b  a  b  c  a  b  a  b  a  b  a  b  c  a  b  a  b
next[i]  -1  0  0  1  2  0  1  2  3  4  3  4  3  4  5  6  7  8  9
1)当i = len时,next[len] = next[18] = 9,说明整个字符串前9个字符和后9个字符相同,所以9是满足要求的。
2)next[9] = 4,说明在0-8中前4个字符和后4个字符相同。因为由1)得前9个字符和后9个字符相同,所以,S串的0-3等于5-8,而0-3又等于9-12,5-8又等于14-17,所以结果是0-3等于14-17,即4也是满足题意的。
3)next[4]=2,同2,我们可以得到2也是满足题意的。
4)next[2]=0,表明没有相同的前缀和后缀了,这时,就已经找到了这个S串的所有前缀和后缀。
5)结果就是2,4,9,18.
所以,我们可以推得这样的结论:凡是next[i]!=0的,都是模式串的前缀和后缀相同的字符数。
这也是getnext函数的一个重要应用,多理解理解就可以了。
也就是说nex数组中实在的意义就是前缀有重复的,这题又通过相等的传递性,从前缀通过中间的相等传到最后的后缀,从而解决了问题
【时间复杂度】\(O(m+n)\)
&代码:
#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
typedef long long ll;
const int INF = 0x3f3f3f3f;
#define cle(a,val) memset(a,(val),sizeof(a))
#define rep(i,a,b) for(int i=(a);i<=(b);i++)
#define red(i,a,b) for(int i=(a);i>=(b);i--)
const int maxn = 400000 + 9 ;
int nex[maxn],n,ans[maxn];
char s[maxn];
void kmpN(char* x,int len) {
	int i=0,j=nex[0]=-1;
	while(i<len) {
		while(j!=-1&&s[i]!=s[j])j=nex[j];
		nex[++i]=++j;
	}
}
void Solve() {
	while(~scanf("%s",s)) {
		n=strlen(s);
		kmpN(s,n);
		// printf("%s\n", s);
		// rep(i,0,2)printf(" ");
		// rep(i,0,n-1) {
		// 	printf("  %c",s[i] );
		// }
		// PU();
		// rep(i,0,n) {
		// 	printf("%3d",nex[i] );
		// }
		// PU();
		int ct=0;
		int t=n;
		while(t!=0) {
			ans[ct++]=t;
			t=nex[t];
		}
		red(i,ct-1,0) {
			printf("%d%c",ans[i],i==0?'\n':' ');
		}
	}
}
int main() {
#ifndef ONLINE_JUDGE
	freopen("1.in","r",stdin),freopen("1.out","w",stdout);
#endif
//iostream::sync_with_stdio(false),cin.tie(0),cout.tie(0);
	// int T;cin>>T;while(T--)
	Solve();
	return 0;
}
												
											POJ 2752 Seek the Name,Seek the Fame(KMP,前缀与后缀相等)的更多相关文章
- (KMP)Seek the Name, Seek the Fame -- poj --2752
		
http://poj.org/problem?id=2752 Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536 ...
 - Seek the Name, Seek the Fame POJ - 2752
		
Seek the Name, Seek the Fame POJ - 2752 http://972169909-qq-com.iteye.com/blog/1071548 (kmp的next的简单应 ...
 - KMP POJ 2752 Seek the Name, Seek the Fame
		
题目传送门 /* 题意:求出一个串的前缀与后缀相同的字串的长度 KMP:nex[]就有这样的性质,倒过来输出就行了 */ /************************************** ...
 - POJ 2752 Seek the Name, Seek the Fame [kmp]
		
Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 17898 Ac ...
 - poj 2752 Seek the Name, Seek the Fame(KMP需转换下思想)
		
Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 10204 Ac ...
 - poj 2752 Seek the Name, Seek the Fame【KMP算法分析记录】【求前后缀相同的子串的长度】
		
Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 14106 Ac ...
 - POJ 2752 Seek the Name, Seek the Fame(next数组运用)
		
Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 24000 ...
 - poj 2752 Seek the Name, Seek the Fame (KMP纯模版)
		
Seek the Name, Seek the Fame Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 13840 Ac ...
 - 题解报告:poj 2752 Seek the Name, Seek the Fame(kmp前缀表prefix_table的运用)
		
Description The little cat is so famous, that many couples tramp over hill and dale to Byteland, and ...
 
随机推荐
- CentOS7初始化mysql库报错
			
在centos7上安装mysql数据库,进行数据库初始化工作时,报错缺少data::dumper库文件,如下: 解决办法:安装autoconf库后重新初始化即可解决. yum-y install au ...
 - xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at[转载]
			
今天在添加友盟统计的podfile pod install报错了: bogon:Children songximing$ pod install /Library/Ruby/Gems//gems/co ...
 - quartz实现定时任务
			
一个定时的demo 引入maven依赖: <dependency> <groupId>org.quartz-scheduler</groupId> <arti ...
 - SSL连接分为两个阶段:握手和数据传输阶段
			
一.SSL概述SSL连接分为两个阶段:握手和数据传输阶段.握手阶段对服务器进行认证并确立用于保护数据传输的加密密钥,必须在传输任何应用数据之前完成握手.一旦握手完成,数据就被分成一系列经过保护的记录进 ...
 - nmap常用参数
			
总结: 主机发现 -sn 防止NMAP端口扫描 -SP TCP 半连接扫描,默认是通过80端口来发现主机的 -SA ACK ping 扫描 -SU UDP ping 扫描 不好 ...
 - bug:*** Collection <__NSArrayM: 0x1c444d440> was mutated while being enumerated.
			
崩溃提示:Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <CAL ...
 - springmvc实现文件上传
			
springmvc实现文件上传 多数文件上传都是通过表单形式提交给后台服务器的,因此,要实现文件上传功能,就需要提供一个文件上传的表单,而该表单就要满足以下3个条件 (1)form表彰的method属 ...
 - (1.6)MySQL执行计划
			
关键词:mysql执行计划 1.用法 [1.1]explain select * from tab_name........ [1.2]desc select * from tab_name..... ...
 - centos7.6删除重新安装python和yum
			
最近在开发一个项目时出现了错误,需要重新安装python和yum,怎么安装呢?随ytkah一起来看看吧.ytkah用的linux分支的centos7.6,各位朋友在下载源的时候要注意版本的区分.现在开 ...
 - 20181220 Oracle程序包基本开发逻辑
			
做事情,开始也许比较迷茫,也可能工具不会,也可能语言不会,但不要害怕 多去思考而不是盲目的开始工作,盲目的听从,程序开发都是不断训练自己的思维能力. 做每件事情都是有意义的,思考为什么这么做,这么做的 ...