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

XDOJ_1140_KMP

时间:2016-11-01 01:32:47      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:scan   amp   return   blog   ret   bsp   strstr   char   ace   

http://acm.xidian.edu.cn/problem.php?id=1140

 

KMP效率真心低,cstring中的strstr快多了。

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        int ans = 0;
        char a[50000],b[50000];
        while(n--)
        {
            scanf("%s",a);
            strcat(b,a);
            char *p = b,*o;
            while(o = strstr(p,"wanshen"))
            {
                p = o+7;
                ans++;
            }
            strcpy(b,p);
        }
        printf("%d\n",ans);
    }
    return 0;
}

 

XDOJ_1140_KMP

标签:scan   amp   return   blog   ret   bsp   strstr   char   ace   

原文地址:http://www.cnblogs.com/zhurb/p/6017881.html

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