题目来自:http://www.cnblogs.com/wuyiqi/archive/2012/01/06/2315188.html

KMP算法开始是判断字符串b是否是字符串a的子串,朴素的算法是枚举,时间复杂度O(m*n)

然后KMP(三个人名字的缩写)发明了KMP算法使时间复杂度降到了O(m+n)

但是<string.h>里面明明有一个函数是strstr(a,b)判断b是否为a的子串啊啊啊啊!!!

这个写得蛮好:http://blog.chinaunix.net/uid-27164517-id-3280128.html

以下仅限于个人理解:

a和b字符串匹配过程中,在j位置开始不匹配了

在0-j中寻找b0 b1 b2 ... bk = b(j-1-k) ... b(j-1)

当b与a字符串失配b应当从k+1个字符开始与a中刚刚失配的位置进行匹配

所以要确定k的值,而k的取值仅与j的位置有关,所以用next[]数组来盛放相应位置k的值

next(j) =   -1  起始位置

       k+1  0 <= k < j-1 失配时b应当重新开始匹配的位置

        0         其他

next[]数组的确立

void getNext(){
int k = -;
next[] = -;
int j = ;
int len = strlen(str);
while(j < len){
if(k == - || str[j] == str[k]){
k++;
j++;
next[j] = k;
}
else{
k = next[k];
}
}
}

http://poj.org/problem?id=3461

给a串和b串,求出b串中包含多少个a串

主要思路:

先对b进行next求解,然后对匹配到达最后进行计数……

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <cstdlib>
#include <stack>
#include <cctype>
#include <string>
#include <queue>
#include <map>
#include <set> using namespace std; const int INF = 0xffffff;
const double ESP = 10e-;
const double Pi = * atan(1.0);
const int MAXN = + ;
const long long MOD = ;
const int dr[] = {,,-,,-,,-,};
const int dc[] = {,,,-,,-,-,};
typedef long long LL; LL gac(LL a,LL b){
return b?gac(b,a%b):a;
}
char str[+];
char str1[MAXN];
int next[+]; void getNext(){
int k = -;
int j = ;
next[] = -;
int len = strlen(str);
while(j < len){
if(k == - || str[j] == str[k]){
j++;
k++;
next[j] = k;
}
else{
k = next[k];
}
}
} int main()
{
#ifndef ONLINE_JUDGE
freopen("inpt.txt","r",stdin);
// freopen("output.txt","w",stdout);
#endif
int t;
scanf("%d",&t);
while(t--){
scanf("%s%s",str,str1);
getNext();
int cnt = ;
int len = strlen(str);
int len1 = strlen(str1);
int j = ;
int i = ;
while(i < len1){
if(j == - || str[j] == str1[i]){
i++;
j++;
}
else{
j = next[j];
}
if(j == len){
cnt++;
}
}
printf("%d\n",cnt);
}
return ;
}

http://poj.org/problem?id=2406

给你一个字符串s要求求出最大的 n 使 s = a^n (a是字串)

主要思路:

先对s串进行next求解,然后如果 len % (len-next[len]) == 0说明字符串恰由子串的n次方组成

则结果是  len / (len-next[len])

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm> using namespace std;
const int MAXN = 10e6 + ;
const int ESP = 10e-; char str[MAXN];
int next[MAXN]; void getNext(){
int k = -;
next[] = -;
int j = ;
int len = strlen(str);
while(j < len){
if(k == - || str[j] == str[k]){
k++;
j++;
next[j] = k;
}
else{
k = next[k];
}
}
} int main(){
// freopen("input.txt","r",stdin);
while(~scanf("%s",str)){
if(str[] == '.')
break;
getNext();
int len = strlen(str);
if(len % (len - next[len]) == ){
printf("%d\n",len / (len - next[len]));
}
else{
printf("1\n");
}
}
return ;
}

http://poj.org/problem?id=2752

给你一个字符串s,要求求出字符串从头开始到某个位置形成的子串a和从后面的某个位置到结尾的子串b,完全相同时输出a串的长度

主要思路:

先对s串进行next求解,从结尾开始依次寻找next[j] != 0 这说明最后几个和开头肯定是相同的,所以最后输出就好,ps:s串本身也符合条件

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm> using namespace std;
const int MAXN = + ;
const int ESP = 10e-; char str[MAXN];
int next[MAXN];
int q[MAXN]; void getNext(){
int k = -;
next[] = -;
int j = ;
int len = strlen(str);
while(j < len){
if(k == - || str[j] == str[k]){
k++;
j++;
next[j] = k;
}
else{
k = next[k];
}
}
} int main(){
// freopen("input.txt","r",stdin);
while(~scanf("%s",str)){
memset(next,,sizeof(next));
getNext();
int len = strlen(str);
int cnt = ;
int k = next[len];
q[cnt++] = len;
while(k){
q[cnt++] = k;
k = next[k];
}
for(int i = cnt-;i >= ;i--){
if(i != cnt-)
cout << ' ';
cout << q[i];
}
cout << endl;
}
return ;
}

http://poj.org/problem?id=2185

给你一个字符串矩阵,求出最小的子矩阵能把矩阵完全覆盖,求其面积

主要思路:

对字符矩阵的每行,每列进行next求解,求得其最小的字串能把所代表的字符串覆盖掉,得到行的最小公倍数,和列的最小公倍数,然后相乘求出面积。

#include <iostream>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <cstdlib>
#include <stack>
#include <cctype>
#include <string>
#include <queue>
#include <map>
#include <set> using namespace std; const int INF = 0xffffff;
const double ESP = 10e-;
const double Pi = * atan(1.0);
const int MAXN = + ;
const long long MOD = ;
const int dr[] = {,,-,,-,,-,};
const int dc[] = {,,,-,,-,-,};
typedef long long LL; LL gac(LL a,LL b){
return b?gac(b,a%b):a;
}
int lcm(int i,int j){
return i * j / gac(i,j);
}
char str[MAXN][];
int next[MAXN];
int n,m; void getR(int i){
int j = ;
int k = -;
next[] = -;
while(j < m){
if(k == - || str[i][j] == str[i][k]){
j++;
k++;
next[j] = k;
}
else{
k = next[k];
}
}
} void getC(int i){
int j = ;
int k = -;
next[] = -;
while(j < n){
if(k == - || str[j][i] == str[k][i]){
j++;
k++;
next[j] = k;
}
else{ k = next[k];
}
}
} int main()
{
#ifndef ONLINE_JUDGE
freopen("inpt.txt","r",stdin);
// freopen("output.txt","w",stdout);
#endif
while(~scanf("%d%d",&n,&m)){
for(int i = ;i < n;i++){
scanf("%s",str[i]);
}
int r = ;
int c = ;
for(int i = ;i < n;i++){
getR(i);
int t = m - next[m];
r = lcm(r,t);
if(r >= m){
r = m;
break;
}
}
for(int i = ;i < m;i++){
getC(i);
int t = n - next[n];
c = lcm(c,t);
if(c >= n){
c = n;
break;
}
} printf("%d\n",r*c);
}
return ;
}

http://poj.org/problem?id=3080

求给出字符串共同拥有的字典序最小的长度最长的子串

解题思路:暴力,strstr函数直接水掉……2333333

#include <iostream>
#include <cstring>
#include <cstdio> using namespace std; char dna[][];
char str[];
char str1[]; int main()
{
// freopen("input.in","r",stdin);
int t;
int m;
scanf("%d",&t);
while(t--)
{
scanf("%d",&m);
for(int i = ;i < m;i++)
scanf("%s",dna[i]);
int maxnum = -0xfffff;
int len = strlen(dna[]);
bool flag = true;
for(int i = ;i < len;i++)
{
memset(str,,sizeof(str));
int t = ;
for(int j = ;j < len;j++)
{
bool flag2 = true;
if(i+j >= len)
break;
str[j] = dna[][i+j];
for(int k = ;k < m;k++)
{
if(strstr(dna[k],str) == NULL)
{
flag2 = false;
break;
}
}
if(flag2)
{
t++;
if(t == maxnum)
{
if(strcmp(str1,str) > )
strcpy(str1,str);
}
if(t > maxnum)
{
maxnum = t;
strcpy(str1,str);
}
flag = false;
}
else
break;
}
}
if(maxnum < || flag)
printf("no significant commonalities\n");
else
{
printf("%s\n",str1);
}
}
return ;
}

KMP poj的更多相关文章

  1. 字符串专题:KMP POJ 3561

    http://poj.org/problem?id=3461 KMP这里讲的不错next的求法值得借鉴 http://blog.sina.com.cn/s/blog_70bab9230101g0qv. ...

  2. 字符串KMP || POJ 2185 Milking Grid

    求一个最小矩阵,经过复制能够覆盖原矩阵(覆盖,不是填充,复制之后可以有多的) *解法:横着竖着kmp,求最大公倍数的做法是不对的,见http://blog.sina.com.cn/s/blog_69c ...

  3. KMP POJ 1961 Period

    题目传送门 /* 题意:求一个串重复出现(>1)的位置 KMP:这简直和POJ_2406没啥区别 */ /******************************************** ...

  4. KMP POJ 2406 Power Strings

    题目传送门 /* 题意:一个串有字串重复n次产生,求最大的n KMP:nex[]的性质应用,感觉对nex加深了理解 */ /************************************** ...

  5. KMP POJ 2752 Seek the Name, Seek the Fame

    题目传送门 /* 题意:求出一个串的前缀与后缀相同的字串的长度 KMP:nex[]就有这样的性质,倒过来输出就行了 */ /************************************** ...

  6. Kuangbin 带你飞 KMP扩展KMP Manacher

    首先是几份模版 KMP void kmp_pre(char x[],int m,int fail[]) { int i,j; j = fail[] = -; i = ; while (i < m ...

  7. POJ 3450 后缀数组/KMP

    题目链接:http://poj.org/problem?id=3450 题意:给定n个字符串,求n个字符串的最长公共子串,无解输出IDENTITY LOST,否则最长的公共子串.有多组解时输出字典序最 ...

  8. POJ 2406 KMP/后缀数组

    题目链接:http://poj.org/problem?id=2406 题意:给定一个字符串,求由一个子串循环n次后可得到原串,输出n[即输出字符串的最大循环次数] 思路一:KMP求最小循环机,然后就 ...

  9. 【poj 2185】Milking Grid(字符串--KMP+问题分解)

    题意:给定一个由字符组成的矩阵,求出它的面积最小的覆盖矩阵.(感觉应该是可重叠的......* (・ω・)っ) 解法:KMP.行列互不影响,可以问题分解.先求出每一行的最小重复串,利用kmp中的nex ...

随机推荐

  1. Week3(9月23日):例子更Powerful更完整了,哇咔咔

    Part I:提问  =========================== 1.控制器中动作方法的返回类型有哪些? 2.如果控制器代码如下,请问浏览器中如何输入什么路由访问? public clas ...

  2. Week13(12月2日):又到了那个点,期末了~~~~

    Part I:提问 =========================== 1.ASP.NET MVC是微软.NET平台上的一个(      ). A.语言    B.集成开发环境    C.Web开 ...

  3. solrCloud+tomcat+zookeeper配置

    一.环境准备: Solr版本:4.7.0 下载地址:http://www.apache.org/dyn/closer.cgi/lucene/solr/4.7.0 Tomcat版本:6.0.39 下载地 ...

  4. CString 操作指南

    过阅读本文你可以学习如何有效地使用 CString. CString 是一种很有用的数据类型.它们很大程度上简化了MFC中的许多操作,使得MFC在做字符串操作的时候方便了很多.不管怎样,使用CStri ...

  5. partial_sort_百度百科

    partial_sort_百度百科 partial_sort

  6. 一步一步重写 CodeIgniter 框架 (10) —— 使用 CodeIgniter 类库(续)

    上一节简单实现了 CI 的类库扩展模型,所以 _ci_load_class 和 _ci_init_class 写的不是很完备.根据上节课的分析,当 system/libraries 目录下存在 Ema ...

  7. iOS 7 - Auto Layout on iOS Versions prior to 6.0

    链接地址:http://stackoverflow.com/questions/18735847/ios-7-auto-layout-on-ios-versions-prior-to-6-0 Stac ...

  8. c++ 静态成员遇到的坑总结

    新标签页http://74.55.154.136/ c++ 静态成员遇到的坑总结 - linuxfloat - 博客园 c++ 静态成员遇到的坑总结   1.对于类静态变量的初始化,用下面方法. // ...

  9. struts2之高危远程代码执行漏洞,可造成服务器被入侵,下载最新版本进行修复

          Struts2 被发现存在新的高危远程代码执行漏洞,可造成服务器被入侵,只要是Struts2版本 低于 2.3.14.3 全部存在此漏洞.目前官方已经发布了最新的版本进行修复.请将stru ...

  10. CentOS桌面环境如何打开终端以及如何将终端加入右键

    安装完CentOS的桌面环境后,默认在桌面以及右键是没有打开终端选项的,要想打开终端,可以由以下步骤: 在左上角菜单[Applications]--->[System Tools]---> ...