首页 > 代码库 > XDOJ_1140_KMP
XDOJ_1140_KMP
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。