D. Messenger

题目连接:

http://www.codeforces.com/contest/631/problem/D

Description

Each employee of the "Blake Techologies" company uses a special messaging app "Blake Messenger". All the stuff likes this app and uses it constantly. However, some important futures are missing. For example, many users want to be able to search through the message history. It was already announced that the new feature will appear in the nearest update, when developers faced some troubles that only you may help them to solve.

All the messages are represented as a strings consisting of only lowercase English letters. In order to reduce the network load strings are represented in the special compressed form. Compression algorithm works as follows: string is represented as a concatenation of n blocks, each block containing only equal characters. One block may be described as a pair (li, ci), where li is the length of the i-th block and ci is the corresponding letter. Thus, the string s may be written as the sequence of pairs .

Your task is to write the program, that given two compressed string t and s finds all occurrences of s in t. Developers know that there may be many such occurrences, so they only ask you to find the number of them. Note that p is the starting position of some occurrence of s in t if and only if tptp + 1...tp + |s| - 1 = s, where ti is the i-th character of string t.

Note that the way to represent the string in compressed form may not be unique. For example string "aaaa" may be given as , , ...

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 200 000) — the number of blocks in the strings t and s, respectively.

The second line contains the descriptions of n parts of string t in the format "li-ci" (1 ≤ li ≤ 1 000 000) — the length of the i-th part and the corresponding lowercase English letter.

The second line contains the descriptions of m parts of string s in the format "li-ci" (1 ≤ li ≤ 1 000 000) — the length of the i-th part and the corresponding lowercase English letter.

Output

Print a single integer — the number of occurrences of s in t.

Sample Input

5 3

3-a 2-b 4-c 3-a 2-c

2-a 2-b 1-c

Sample Output

1

Hint

题意

给你两个字符串

每个字符串给你的形式是,有l1个c1在第一个位置,有l2个c2在第二个位置.....这样的

然后问你第一个字符串中有多少个和第二个字符串相同的子串

题解:

KMP就好了

这个和kmp其实差不多的,唯一不同的就是在开始位置和结束位置的时候,这两个位置的匹配只要第一个串这两个位置的字符大于等于第二个串的就好。

注意相邻的字符可能相同。

注意一种特殊情况

8 5

1-a 1-b 1-c 1-a 2-b 1-c 1-a 1-b

1-a 1-b 1-c 1-a 1-b

这种情况,就不能像平常kmp一样跳回到p[j]

于是我们就暴力的直接跳回到0就好了。

代码

#include<bits/stdc++.h>
using namespace std;
const int maxn = 2e5+4;
vector<pair<long long,int> >V1,V2;
int n,m;
int p[maxn];
void kmp()
{
int j=0;
for(int i=1;i<V2.size();i++)
{
j=p[i];
while(j&&V2[j]!=V2[i])j=p[j];
if(V2[j]==V2[i])p[i+1]=j+1;
}
}
void get()
{
int j=0;
long long ans = 0;
for(int i=0;i<V1.size();i++)
{
if(j==V2.size()-1&&V2[j].second==V1[i].second&&V2[j].first<=V1[i].first)j++;
else{
while(j&&V2[j]!=V1[i])j=p[j];
if(j==0&&V2[j].second==V1[i].second&&V2[j].first<=V1[i].first)j++;
else if(V2[j]==V1[i])j++;
}
if(j==V2.size())
{
if(V1[i].first>V2[j-1].first)
ans++,j=0,i--;
else
ans++,j=p[j];
}
}
printf("%lld\n",ans);
}
int main()
{
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
{
long long x;char y;
scanf("%lld",&x);
scanf("%c",&y);
scanf("%c",&y);
int z=y-'a'+1;
if(V1.size()&&V1.back().second==z)
V1.back().first+=x;
else
V1.push_back(make_pair(x,z));
}
for(int i=1;i<=m;i++)
{
long long x;char y;
scanf("%lld",&x);
scanf("%c",&y);
scanf("%c",&y);
int z=y-'a'+1;
if(V2.size()&&V2.back().second==z)
V2.back().first+=x;
else
V2.push_back(make_pair(x,z));
}
if(V2.size()==1)
{
long long ans = 0;
for(int i=0;i<V1.size();i++)
if(V1[i].second==V2[0].second&&V1[i].first>=V2[0].first)
ans+=(V1[i].first-V2[0].first+1);
printf("%lld\n",ans);
return 0;
}
kmp();
get();
return 0;
}

Codeforces Round #344 (Div. 2) D. Messenger kmp的更多相关文章

  1. Codeforces Round #344 (Div. 2) D. Messenger (KMP)

    D. Messenger time limit per test2 seconds memory limit per test512 megabytes inputstandard input out ...

  2. Codeforces Round #344 (Div. 2)

    水 A - Interview 注意是或不是异或 #include <bits/stdc++.h> int a[1005], b[1005]; int main() { int n; sc ...

  3. Codeforces Round #344 (Div. 2) A. Interview

    //http://codeforces.com/contest/631/problem/Apackage codeforces344; import java.io.BufferedReader; i ...

  4. Codeforces Round #545 (Div. 2) D 贪心 + kmp

    https://codeforces.com/contest/1138/problem/D 题意 两个01串s和t,s中字符能相互交换,问最多能得到多少个(可交叉)的t 题解 即将s中的01塞进t中, ...

  5. Codeforces Round #344 (Div. 2) A

    A. Interview time limit per test 1 second memory limit per test 256 megabytes input standard input o ...

  6. Codeforces Round #344 (Div. 2) E. Product Sum 维护凸壳

    E. Product Sum 题目连接: http://www.codeforces.com/contest/631/problem/E Description Blake is the boss o ...

  7. Codeforces Round #344 (Div. 2) C. Report 其他

    C. Report 题目连接: http://www.codeforces.com/contest/631/problem/C Description Each month Blake gets th ...

  8. Codeforces Round #344 (Div. 2) B. Print Check 水题

    B. Print Check 题目连接: http://www.codeforces.com/contest/631/problem/B Description Kris works in a lar ...

  9. Codeforces Round #344 (Div. 2) A. Interview 水题

    A. Interview 题目连接: http://www.codeforces.com/contest/631/problem/A Description Blake is a CEO of a l ...

随机推荐

  1. Eclipse中SVN更改连接用户

    Eclipse中安装了SVN插件,当连接到SVN服务器后,便无法从客户端更改连接帐号 百度一下,也就知道 查看Eclipse中使用的是什么SVN Interface,位置在windows > p ...

  2. python基础=== itertools介绍(转载)

    原文链接:http://python.jobbole.com/85321/ Python提供了一个非常棒的模块用于创建自定义的迭代器,这个模块就是 itertools.itertools 提供的工具相 ...

  3. 64_a1

    AGReader-1.2-16.fc26.x86_64.rpm 13-Feb-2017 23:31 50654 ATpy-0.9.7-11.fc26.noarch.rpm 13-Feb-2017 22 ...

  4. 菜鸟进阶之:VC++之Visual Studio中DLL调用实现

    C++写的DLL,用C++调用其实是一个比较简单的事情,调用DLL函数的方法其实有很多,说一个最普通的方法: 1.新建一个解决方案,文件->新建项目->Visual c++->win ...

  5. 图论-单源最短路-SPFA算法

    有关概念: 最短路问题:若在图中的每一条边都有对应的权值,求从一点到另一点之间权值和最小的路径 SPFA算法的功能是求固定起点到图中其余各点的的最短路(单源最短路径) 约定:图中不存在负权环,用邻接表 ...

  6. c basic library framework - simplec 2.0.0

    前言 - simplec 单元测试 流程介绍 一个关于C基础库 simplec 2.0.0 发布了. 详细的文档介绍请参照 README.md. 说的再多都无用, 抵不上 gdb 一个 b r n. ...

  7. jdbc预编译插入数据操作

    package com.test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.Prepare ...

  8. linux命令(28):scp命令

    命令格式:scp [参数] [原路径] [目标路径] 实例1:从远处复制文件到本地目录 scp root@192.168.120.204:/opt/soft/nginx-0.5.38.tar.gz / ...

  9. 转载--MyBaits中的#和$的区别

    面试被问到了,百度了下,原文地址:mybatis中的#和$的区别 1. #将传入的数据都当成一个字符串,会对自动传入的数据加一个双引号.如:order by #user_id#,如果传入的值是111, ...

  10. _stdcall调用

    以前看windows编程时一直有个 _stdcall 函数调用约定 一直不是很理解,只能硬记. 现在终于在<程序是怎样跑起来的>这本书书中找到了答案. 1. _stdcall 是stand ...