码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 2087: 剪花布条

时间:2017-08-17 12:34:25      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:std   size   names   als   sync   clu   pid   its   auth   


///@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: 剪花布条

标签:std   size   names   als   sync   clu   pid   its   auth   

原文地址:http://www.cnblogs.com/zjnu/p/7380511.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!