AcWing 831. KMP字符串
原题链接
简单
作者:
minux
,
2020-04-23 11:45:44
,
所有人可见
,
阅读 397
#include <bits/stdc++.h>
using namespace std;
const int N=1e5+5;
const int M=1e6+5;
char p[N]; // 模板串
char s[M]; // 模式串
int n, m;
int ne[N]; // next数组(for KMP algorithm)
int main(){
// 设置模板串和模式串的读取下标从1开始
cin>>n>>(p+1)>>m>>(s+1);
// 求next数组
memset(ne, 0x00, sizeof ne); // next[1]=0;
for(int i=2, j=0; i<=n; i++){
while(j && p[i]!=p[j+1]) j=ne[j];
if(p[i]==p[j+1]) j++;
ne[i]=j;
}
for(int i=1, j=0; i<=m; ++i){
// 当出现不匹配或者j已经到达模板串的开头
while(j && s[i]!=p[j+1]) j=ne[j];
if(s[i]==p[j+1]) j++;
if(j==n){
// match
cout<<i-n<<" ";
j=ne[j];
}
}
return 0;
}