hdu 1686 Oulipo (kmp模板题)
题意:给出模式串和文本串,问模式串在文本串中出现了多少次,可以overlap.
思路:思考naive的匹配过程。nxt函数不过是改进了当失配发生时,不是移动1位,而是移动多位。nxt函数的含义是当失配发生时,移动到的位置....所以有的教程管这个叫失配函数吧,也不是很难理解的样子。
学会kmp之后的第一道kmp,嘿嘿嘿(是的,poj2406的时候我并不会kmp 2333)
/* ***********************************************
Author :111qqz
Created Time :2016年08月10日 星期三 20时02分33秒
File Name :code/hdu/1686.cpp
************************************************ */
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#include <stack>
#include <set>
#include <map>
#include <string>
#include <cmath>
#include <cstdlib>
#include <deque>
#include <ctime>
#define fst first
#define sec second
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define ms(a,x) memset(a,x,sizeof(a))
typedef long long LL;
#define pi pair < int ,int >
#define MP make_pair
using namespace std;
const double eps = 1E-8;
const int dx4[4]={1,0,0,-1};
const int dy4[4]={0,-1,1,0};
const int inf = 0x3f3f3f3f;
const int N=1E4+7;
string a,b;
int ans;
int nxt[N];
void getnxt( int n)
{
int i = 0;
int j = -1;
nxt[0] = -1;
while (i<n)
if (j==-1||b[i]==b[j]) nxt[++i]=++j;
else j = nxt[j];
}
void kmp( int n,int m)
{
int i = 0 ;
int j = 0 ;
getnxt(m);
// for ( int i = 0 ; i < m ; i++) cout<<i<<" "<<nxt[i]<<endl;
while (i<n)
{
if (j==-1||a[i]==b[j]) i++,j++;
else j = nxt[j];
if (j==m) ans++,j=nxt[j];
// cout<<"n:"<<n<<" i:"<<i<<" j:"<<j<<endl;
}
}
int main()
{
#ifndef ONLINE_JUDGE
freopen("code/in.txt","r",stdin);
#endif
ios::sync_with_stdio(false);
int T;
cin>>T;
while (T--)
{
cin>>a>>b;
swap(a,b);
// cout<<"a:"<<a<<" b:"<<b<<endl;
int la = a.length();
int lb = b.length();
ans = 0 ;
kmp(la,lb);
cout<<ans<<endl;
}
#ifndef ONLINE_JUDGE
fclose(stdin);
#endif
return 0;
}