HDOJ-2087(KMP算法)
剪花布条
HDOJ-2087
本题和hdoj-1686相似,唯一不同的是这里的子串一定要是单独的。所以在确定有多少个子串时不能用前面的方法。而是在循环时,只要找到一个子串,i就不是++,而是+=子串的长度。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
using namespace std;
string a,b,com;
int pi[2010];
void Pi(string s){
memset(pi,0,sizeof(pi));
int n=s.length();
pi[0]=0;
for(int i=1;i<n;i++){
int j=pi[i-1];
while(j>0&&s[i]!=s[j]){
j=pi[j-1];
}
if(s[i]==s[j])
j++;
pi[i]=j;
}
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
while(cin>>b){
if(b=="#")
break;
cin>>a;
char c=20;
com=a+c+b;
Pi(com);
int n=a.length();
int m=b.length();
int ans=0;
for(int i=n*2;i<n+m+1;){
if(pi[i]==n){
ans++;
i+=n;
}else{
i++;
}
}
cout<<ans<<endl;
}
return 0;
}
Either Excellent or Rusty