HDU 2087: 剪花布条
Posted rhythm-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HDU 2087: 剪花布条相关的知识,希望对你有一定的参考价值。
HDU 2087: 剪花布条
题目描述
输入
输出
样例输入
abcde a3 aaaaaa aa #
样例输出
0 3
#include <iostream> #include <string> using namespace std; int main(){ int j,a; string str,temp; while(cin>>str>>temp&&str[0]!=‘#‘) { a=j=0; for(int i=0;i<str.size();i++){ if(str[i]==temp[j]){ j++; if(j==temp.length()){ a++; j=0; } } else{ i-=j; j=0; } } cout<<a<<endl; } return 0; }
以上是关于HDU 2087: 剪花布条的主要内容,如果未能解决你的问题,请参考以下文章