记录编号 |
191570 |
评测结果 |
A |
题目名称 |
[POJ 3461] 乌力波 |
最终得分 |
100 |
用户昵称 |
mikumikumi |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.042 s |
提交时间 |
2015-10-08 07:59:47 |
内存使用 |
1.31 MiB |
显示代码纯文本
#include<cstdio>
#include<deque>
#include<string>
#include<iostream>
#include<cstring>
using namespace std;
const int SIZEN=10010,SIZEM=1000010;
int T,f[SIZEN];
char P[SIZEN],t[SIZEM];
void getFail(char *word)
{
int m=strlen(word);
f[0]=0;f[1]=0;
for(int i=1;i<m;i++)
{
int j=f[i];
while(j&&word[i]!=word[j]) j=f[j];
if(word[i]==word[j]) f[i+1]=j+1;
else f[i+1]=0;
}
}
int MP(char *word,char *text)
{
int ans=0;
getFail(word);
int n=strlen(text),m=strlen(word);
int j=0;
for(int i=0;i<n;i++)
{
while(j&&word[j]!=text[i]) j=f[j];
if(word[j]==text[i]) j++;
if(j==m) ans++;
}
return ans;
}
int main()
{
freopen("oulipo.in","r",stdin);
freopen("oulipo.out","w",stdout);
scanf("%d",&T);
while(T)
{
T--;
scanf("%s%s",P,t);
printf("%d\n",MP(P,t));
}
return 0;
}