HDU4847(字符串匹配)
作者:互联网
http://acm.hdu.edu.cn/showproblem.php?pid=4847
题意:
给定一段文本,统计其中doge出现的次数
思路:
水题,kmp可以做,使用STL中的string更简单;
代码:
#include<iostream> #include<stdio.h> #include<stdlib.h> #include<string> #include<iomanip> #include<algorithm> #include<string.h> #include<queue> #include<cmath> #include<stack> using namespace std; const int maxn=3e5+10; const int inf=0x7f7f7f7f; typedef long long ll; string doge; string ma="doge"; int main() { ll ans=0; while(getline(cin,doge)){ for(int i=0; i<doge.length(); i++){ if(doge[i]<='Z'&&doge[i]>='A') doge[i]=doge[i]-'A'+'a'; } ll pos=0; while(pos!=string::npos) { pos=doge.find(ma,pos); if(pos!=string::npos){ ans++; pos+=4; } } } cout<<ans<<endl; system("pause"); return 0; }
标签:匹配,string,int,ll,doge,pos,字符串,HDU4847,include 来源: https://www.cnblogs.com/sweetlittlebaby/p/14355863.html