HDU 1686 (KMP模式串出现的次数) Oulipo

时间:2023-02-11 11:46:56

题意:

求模式串W在母串T中出现的次数,各个匹配串中允许有重叠的部分。

分析:

一开始想不清楚当一次匹配完成时该怎么办,我还SB地让i回溯到某个位置上去。

后来仔细想想,完全不用,直接让模式串向前滑动,即 j = next[j]

 #include <iostream>
#include <cstdio>
#include <cstring> using namespace std; const int maxn1 = + ;
const int maxn2 = + ;
char W[maxn1], T[maxn2];
int next[maxn1]; void get_next(char* W, int l)
{
int k = -, j = ;
next[] = -;
while(j < l)
{
if(k == - || W[k] == W[j])
{
++k;
++j;
next[j] = k;
}
else k = next[k];
}
} int KMP(char* W, int lenw, char* T, int lent)
{
int i = , j = , ans = ;
while(i < lent)
{
if(j == - || T[i] == W[j])
{
++i;
++j;
}
else j = next[j];
if(j == lenw)
{
ans++;
j = next[j];
}
}
return ans;
} int main()
{
//freopen("in.txt", "r", stdin);
int kase;
scanf("%d", &kase);
while(kase--)
{
memset(next, , sizeof(next));
scanf("%s%s", W, T);
int lenw = strlen(W);
int lent = strlen(T);
get_next(W, lenw);
printf("%d\n", KMP(W, lenw, T, lent));
} return ;
}

代码君

HDU 1686 (KMP模式串出现的次数) Oulipo的更多相关文章

  1. hdu 1686 KMP模板

    // hdu 1686 KMP模板 // 没啥好说的,KMP裸题,这里是MP模板 #include <cstdio> #include <iostream> #include ...

  2. POJ 3461 Oulipo&lpar;KMP&comma;模式串在主串中出现次数 可重叠&rpar;

    题意:给你两个字符串p和s,求出p在s中出现的次数. 显然,我们要先把模式串放到前面,之后主串放后面,中间隔开,这样就可以根据前缀数组的性质来求了. 我先想直接把p接到s前面,之后求Next数组对st ...

  3. Oulipo HDU 1686 KMP模板

    题目大意:求模式串在主串中的出现次数. 题目思路:KMP模板题 #include<iostream> #include<algorithm> #include<cstri ...

  4. HDU 1686 &amp&semi; KMP

    题意: 求模板在匹配串所有子串中出现次数. SOL: 本题与普通kmp有一点不同,因为待匹配串中的模板串可能相互包含. 我们考虑正常的kmp是在怎么做的 i = 1 2 3 4 5 6 7 8 9 … ...

  5. hdu 1686 KMP算法

    题意: 求子串w在T中出现的次数. kmp算法详解:http://www.cnblogs.com/XDJjy/p/3871045.html #include <iostream> #inc ...

  6. HDU 3065 病毒侵袭持续中(AC自动机(每个模式串出现次数))

    http://acm.hdu.edu.cn/showproblem.php?pid=3065 题意:求每个模式串出现的次数. 思路: 不难,把模板修改一下即可. #include<iostrea ...

  7. hdu5384 AC自己主动机模板题,统计模式串在给定串中出现的个数

    http://acm.hdu.edu.cn/showproblem.php?pid=5384 Problem Description Danganronpa is a video game franc ...

  8. hdu 1686 Oulipo 【KMP】&lpar;计算模式串匹配的次数——与已匹配的字串可以有交集&rpar;

    题目链接:https://vjudge.net/contest/220679#problem/B 题目大意: 输入一个T,表示有T组测试数据: 每组测试数据包括一个字符串W,T,T长度大于W小于100 ...

  9. HDU 2087 剪花布条(模式串在主串中出现的次数主串中子串不可重叠)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2087 题意:求模式串在主串中出现的次数,与模式串匹配的子串之间不可重叠. 思路:用kmp算法解决,在匹 ...

随机推荐

  1. 08&period;C&num; System&period;Nulable&lt&semi;T&gt&semi;和空引用操作符&lpar;四章4&period;2-4&period;4&rpar;

    看了这3小节,发现作者讲得太详细了,把一个都在正常使用的用法说得太神密了,搞得不知是自己不懂作者的苦心,还是作者用意为之,这里给大家都简单讲下吧,太深的真心讲不下去. 1.可空类型的核心部分是Syst ...

  2. IOS之UIView的tag学习

    tag是UIView的一个属性,而且要求tag值唯一.父视图可以通过tag来找到一个子视图 UIView *redView = [[UIView alloc]initWithFrame:CGRectM ...

  3. com&period;sun&period;image&period;codec&period;jpeg--导入报错

    import com.sun.image.codec.jpeg; 这样导入的时候,总是报错:Only a type can be imported. com.sun.image.codec.jpeg ...

  4. 在JS和&period;NET中使用JSON &lpar;以及使用Linq to JSON定制JSON数据&rpar;

    转载原地址: http://www.cnblogs.com/mcgrady/archive/2013/06/08/3127781.html 阅读目录 JSON的两种结构 认识JSON字符串 在JS中如 ...

  5. Commons CLI - Usage

    Usage Scenarios The following sections describe some example scenarios on how to use CLI in applicat ...

  6. &lbrack;转&rsqb;Illuminate Database

    本文转自:https://github.com/illuminate/database Illuminate Database The Illuminate Database component is ...

  7. android ActionBarSherlock使用说明

    源代码地址:https://github.com/JakeWharton/ActionBarSherlock 1.添加项目依赖包 2.修改AndroidManifest.xml中的主题(或者继承该主题 ...

  8. vue-loader 作用

    vue-loader:解析和转换 .vue 文件,提取出其中的逻辑代码 script.样式代码 style.以及 HTML 模版 template,再分别把它们交给对应的 Loader 去处理. cs ...

  9. python基础之 反射&comma;md5加密 以及isinstance&comma; type&comma; issubclass内置方法的运用

    内容梗概: 1. isinstance, type, issubclass 2. 区分函数和方法 3. 反射(重点) 4. md5加密 1. isinstance, type, issubclass1 ...

  10. maven install 跳过测试

    mvn命令跳过测试:mvn install -Dmaven.test.skip=true 测试类不会生成.class 文件mvn install -DskipTests 测试类会生成.class文件 ...