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

ZOJ 3957 Knuth-Morris-Pratt Algorithm

时间:2017-04-10 20:16:27      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:main   i++   scan   clu   logs   scanf   har   bsp   ret   

暴力。

#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

标签:main   i++   scan   clu   logs   scanf   har   bsp   ret   

原文地址:http://www.cnblogs.com/zufezzt/p/6690681.html

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