ZOJ 3957 Knuth-Morris-Pratt Algorithm
Posted Fighting Heart
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ZOJ 3957 Knuth-Morris-Pratt Algorithm相关的知识,希望对你有一定的参考价值。
暴力。
#include<bits/stdc++.h> using namespace std; char s[2000]; int main() { int T; scanf("%d",&T); while(T--) { scanf("%s",s); int ans=0; int len=strlen(s); for(int i=0;i<len-2;i++) { if(s[i]==‘d‘&&s[i+1]==‘o‘&&s[i+2]==‘g‘) ans++; if(s[i]==‘c‘&&s[i+1]==‘a‘&&s[i+2]==‘t‘) ans++; } printf("%d\n",ans); } return 0; }
以上是关于ZOJ 3957 Knuth-Morris-Pratt Algorithm的主要内容,如果未能解决你的问题,请参考以下文章