HDU 2087: 剪花布条

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2087: 剪花布条相关的知识,希望对你有一定的参考价值。


///@link http://acm.hdu.edu.cn/showproblem.php?pid=2087
///@author Sycamore
///@date Aug 17
#include<bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
string s,t;
while(cin>>s&&s[0]!=‘#‘)
{
cin>>t;
int cnt=0;
for(auto fd=s.find(t);~fd;fd=s.find(t,fd+t.length()),cnt++);
cout<<cnt<<\n;
}
return 0;
}
pasting

 

以上是关于HDU 2087: 剪花布条的主要内容,如果未能解决你的问题,请参考以下文章

HDU 2087 剪花布条

hdu2087剪花布条(KMP)

C - 剪花布条 HDU-2087

HDU 2087: 剪花布条

HDU 2087: 剪花布条

HDU2087 剪花布条(KMP)