题面

该场 Div. 3 最“难”的一道题:Funny Substrings

O

I

D

\tt OID

OID 队长喜欢玩字符串,因为

O

n

e

I

n

D

a

r

k

\tt “OneInDark”

“OneInDark” 是一个望而生畏的字符串。

O

I

D

\tt OID

OID 会进行

N

\tt N

N 次操作,每次操作形如以下两种之一:

  • x := S : x 是变量名称,S 是一个具体的字符串,:= 符号两边都有空格。

    O

    I

    D

    \tt OID

    OID 把此时的 x 叫做

    S

    Y

    SY

    SY 变量。该操作意思是把 x 赋值为字符串 S。

  • x = a + b : x,a,b 是变量名称,= 符号和 + 符号两边都有空格。

    O

    I

    D

    \tt OID

    OID 把此时的 x 也叫做

    S

    Y

    SY

    SY 变量。该操作意思是把 x 赋值为 a 和 b 首尾拼接起来的字符串。保证 a 和 b 在此操作之前作为

    S

    Y

    SY

    SY 变量出现过。

现在问你,在最后一次出现的

S

Y

SY

SY 变量储存的字符串中,字符串 haha 作为子串出现过多少次。比如:hahahahahaha 中出现了 3 次。

一共

T

1

0

3

\tt T\leq10^3

T≤103 组数据,每组数据中

1

N

50

\tt1\leq N\leq50

1≤N≤50,

1

S

5

\tt1\leq|S|\leq5

1≤∣S∣≤5 ,

1

5

\tt1\leq|变量名|\leq5

1≤∣变量名∣≤5。

题解

(我看这道题过的人最少,姑且认为它难吧)

不难发现,最终的字符串长度可能超过 long long 范围,因此,直接 string 模拟不是个好方法。

我们会发现,对于一个字符串,有用的信息可以整理成一个三元组

{

l

(

s

t

r

i

n

g

)

,

x

(

l

o

n

g

l

o

n

g

)

,

r

(

s

t

r

i

n

g

)

}

\tt\{l(string),x(long~long),r(string)\}

{l(string),x(long long),r(string)},分别表示:该字符串最左边 3 个(也许不足 3 个)字符,该字符串中 haha 的出现次数,该字符串最右边 3 个(也许不足 3 个)字符。

这个不难处理。关键是这样的三元组可以方便地定义 a + b 操作,返回另一个三元组:

  • x

    a

    \tt x_a

    xa​ 和

    x

    b

    \tt x_b

    xb​ 加起作为

    x

    \tt x

    x ,再把

    r

    a

    \tt r_a

    ra​ 和

    l

    b

    \tt l_b

    lb​ 拼起来(长度不超过 6),统计里面的 haha 数量,也加到

    x

    \tt x

    x 里面去。

  • l

    \tt l

    l 赋为

    l

    a

    \tt l_a

    la​ ,如果长度不足 3,再把

    l

    b

    \tt l_b

    lb​ 拼在

    l

    \tt l

    l 后面,把长度超过 3 的砍掉。

  • r

    \tt r

    r 赋为

    r

    b

    \tt r_b

    rb​ ,如果长度不足 3,再把

    r

    a

    \tt r_a

    ra​ 拼在

    r

    \tt r

    r 前面,把长度超过 3 的砍掉。

这样就做出这道模拟题了,中间的字符串操作,可以暴力用 string 或者 char*+sprintf,时间足够。对于每个变量怎么存三元组,你可以用哈希也可以用 map

CODE

#include<set>
#include<map>
#include<queue>
#include<ctime>
#include<cmath>
#include<vector>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define MAXN 105
#define ENDL putchar('\n')
#define LL long long
#define DB double
#define lowbit(x) ((-x) & (x))
#define eps 1e-9
LL read() {
LL f = 1,x = 0;char s = getchar();
while(s < '0' || s > '9') {if(s=='-')f = -f;s = getchar();}
while(s >= '0' && s <= '9') {x=x*10+(s-'0');s = getchar();}
return f * x;
}
int n,m,i,j,s,o,k;
struct it{
char l[5],r[5];
LL nm;it(){memset(l,0,sizeof(l));memset(r,0,sizeof(r));nm=0;}
it(char *L,char *R,LL N){
strncpy(l,L,3);nm=N;memset(r,0,sizeof(r));
int le = strlen(R);
for(int i = max(le-3,0),j=0;i < le;i ++,j ++) r[j]=R[i];
}
};
it operator + (it a,it b) {
char ss[10]; int ls; LL as = a.nm+b.nm;
sprintf(ss,"%s%s",a.r,b.l);
ls = strlen(ss);
for(int i = 0;i <= ls-4;i ++) if(ss[i]=='h'&&ss[i+1]=='a'&&ss[i+2]=='h'&&ss[i+3]=='a') as ++;
char rel[10],rer[10];
if(strlen(a.l) < 3) sprintf(rel,"%s%s",a.l,b.l);
else strcpy(rel,a.l);
if(strlen(b.r) < 3) sprintf(rer,"%s%s",a.r,b.r);
else strcpy(rer,b.r);
return it(rel,rer,as);
}
map<string,it> mp;
int main() {
int T = read();
while(T --) {
n = read();
mp.clear();
string las;
for(int i = 1;i <= n;i ++) {
string A,md,B,C;
cin>>A;
las = A;
cin>>md;
if(md[0]==':') {
char ss[15]; int le,as = 0;
scanf("%s",ss); le = strlen(ss);
for(int i = 0;i <= le-4;i ++) {
if(ss[i]=='h'&&ss[i+1]=='a'&&ss[i+2]=='h'&&ss[i+3]=='a') as ++;
}
mp[A] = it(ss,ss,(LL)as);
}
else {
cin>>B;cin>>md;cin>>C;
mp[A] = mp[B] + mp[C];
}
}
printf("%lld\n",mp[las].nm);
}
return 0;
}

[CF1538E] Funny Substrings (模拟)的更多相关文章

  1. CodeForces 550A Two Substrings(模拟)

    [题目链接]click here~~  [题目大意]:  You are given string s. Your task is to determine if the given string s ...

  2. 【CF1029A】Many Equal Substrings(模拟)

    题意:给定一个长度为n的串s,要求构造一个长度最小的使s出现了k次的串,可以重叠 n<=50,k<=50 思路:计算一下前后缀相同长度 #include<cstdio> #in ...

  3. poj 3415 Common Substrings(后缀数组+单调栈)

    http://poj.org/problem?id=3415 Common Substrings Time Limit: 5000MS   Memory Limit: 65536K Total Sub ...

  4. Advanced Fruits(好题,LCS的模拟)

    Advanced Fruits Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)T ...

  5. CF 319D(Have You Ever Heard About the Word?-模拟)

    D. Have You Ever Heard About the Word? time limit per test 6 seconds memory limit per test 256 megab ...

  6. HDU 5908 Abelian Period (BestCoder Round #88 模拟+暴力)

    HDU 5908 Abelian Period (BestCoder Round #88 模拟+暴力) 题目链接http://acm.hdu.edu.cn/showproblem.php?pid=59 ...

  7. Codeforces 626A Robot Sequence(模拟)

    A. Robot Sequence time limit per test:2 seconds memory limit per test:256 megabytes input:standard i ...

  8. Codeforces Round #533 (Div. 2) B. Zuhair and Strings 【模拟】

    传送门:http://codeforces.com/contest/1105/problem/B B. Zuhair and Strings time limit per test 1 second ...

  9. hdu4886 TIANKENG’s restaurant(Ⅱ) (trie树或者模拟进制)

    TIANKENG’s restaurant(Ⅱ) Time Limit: 16000/8000 MS (Java/Others)    Memory Limit: 130107/65536 K (Ja ...

随机推荐

  1. python爬虫之JS逆向

    Python爬虫之JS逆向案例 由于在爬取数据时,遇到请求头限制属性为动态生成,现将解决方式整理如下: JS逆向有两种思路: 一种是整理出js文件在Python中直接使用execjs调用js文件(可见 ...

  2. 使用Vite2+TypeScript4+Vue3技术栈,如何入手开发项目

    前言 今天,我们使用Vite2.0+Vue3+TS来试玩一下,开发一个demo项目.实战 我们,打开Vite官方网站(https://cn.vitejs.dev/). Vite (法语意为 " ...

  3. ansible安装配置及基本用法

    ansiblle具有如下特点: 1.部署简单,只需在主控端部署Ansible环境,被控端无需做任何操作: 2.默认使用SSH协议对设备进行管理: 3.主从集中化管理: 4.配置简单.功能强大.扩展性强 ...

  4. UiPath存在文本Text Exists的介绍和使用

    一.Text Exists的介绍 检查是否在给定的UI元素中找到了文本,输出的是一个布尔值 二.Text Exists在UiPath中的使用 1. 打开设计器,在设计库中新建一个Sequence,为序 ...

  5. 简单到爆——用Python在MP4和GIF间互转,我会了

    写在前面的一些P话: 昨天用公众号写文章的时候,遇到个问题.我发现公众号插入视频文件太繁琐,一个很小的视频,作为视频传上去平台还要审核,播放的时候也没gif来的直接.于是想着找个工具将mp4转换成gi ...

  6. EasyExcel导出创建Excel下拉框

    话不多说,上才艺. 下面代码粘贴即用 /** * * 导出表格带下拉框 */ @GetMapping("exportBox") public void export(HttpSer ...

  7. C语言中限定符的作用

    C语言中常用的一般包括const.static.extern.register和volatile这几个.这些是C语言标准中规定的关键词,所有的编译器都必须支持这些关键词,它们的作用如下: 1.cons ...

  8. 在项目中导入lombok依赖自动生成有参,无参 空参 方法的注解

    导入依赖 <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok< ...

  9. RK3568开发笔记(四):在虚拟机上使用SDK编译制作uboot、kernel和buildroot镜像

    前言   上一篇搭建好了ubuntu宿主机开发环境,本篇的目标系统主要是开发linux+qt,所以需要刷上billdroot+Qt创建的系统,为了更好的熟悉原理和整个开发过程,选择从零开始搭建rk35 ...

  10. 手把手教你在netty中使用TCP协议请求DNS服务器

    目录 简介 DNS传输协议简介 DNS的IP地址 Do53/TCP在netty中的使用 搭建DNS netty client 发送DNS查询消息 DNS查询的消息处理 总结 简介 DNS的全称doma ...