A10051 | Replacement
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Daniel has a string $s$ , consisting of lowercase English letters and period signs (characters '.'). Let's define the operation of replacement as the following sequence of steps: find a substring ".." (two consecutive periods) in string $s$ , of all occurrences of the substring let's choose the first one, and replace this substring with string ".". In other words, during the replacement operation, the first two consecutive periods are replaced by one. If string $s$ contains no two consecutive periods, then nothing happens.
Let's define $f(s)$ as the minimum number of operations of replacement to perform, so that the string does not have any two consecutive periods left.
You need to process $m$ queries, the $i$ -th results in that the character at position $x_{i}$ ( $1<=x_{i}<=n$ ) of string $s$ is assigned value $c_{i}$ . After each operation you have to calculate and output the value of $f(s)$ .
Help Daniel to process all queries.
Let's define $f(s)$ as the minimum number of operations of replacement to perform, so that the string does not have any two consecutive periods left.
You need to process $m$ queries, the $i$ -th results in that the character at position $x_{i}$ ( $1<=x_{i}<=n$ ) of string $s$ is assigned value $c_{i}$ . After each operation you have to calculate and output the value of $f(s)$ .
Help Daniel to process all queries.
输入格式
The first line contains two integers $n$ and $m$ ( $1<=n,m<=300000$ ) the length of the string and the number of queries.
The second line contains string $s$ , consisting of $n$ lowercase English letters and period signs.
The following $m$ lines contain the descriptions of queries. The $i$ -th line contains integer $x_{i}$ and $c_{i}$ ( $1<=x_{i}<=n$ , $c_{i}$ — a lowercas English letter or a period sign), describing the query of assigning symbol $c_{i}$ to position $x_{i}$ .
The second line contains string $s$ , consisting of $n$ lowercase English letters and period signs.
The following $m$ lines contain the descriptions of queries. The $i$ -th line contains integer $x_{i}$ and $c_{i}$ ( $1<=x_{i}<=n$ , $c_{i}$ — a lowercas English letter or a period sign), describing the query of assigning symbol $c_{i}$ to position $x_{i}$ .
输出格式
Print $m$ numbers, one per line, the $i$ -th of these numbers must be equal to the value of $f(s)$ after performing the $i$ -th assignment.
输入输出样例
输入 #1
10 3 .b..bz.... 1 h 3 c 9 f
输出 #1
4 3 1
输入 #2
4 4 .cc. 2 . 3 . 2 a 1 a
输出 #2
1 3 1 1
Note to the first sample test (replaced periods are enclosed in square brackets).
The original string is ".b..bz....".
- after the first query $f($ hb..bz.... $)$ = 4 ("hb\[..\]bz...." $→$ "hb.bz\[..\].." $→$ "hb.bz\[..\]." $→$ "hb.bz\[..\]" $→$ "hb.bz.")
- after the second query $f($ hbс.bz.... $)$ = 3 ("hbс.bz\[..\].." $→$ "hbс.bz\[..\]." $→$ "hbс.bz\[..\]" $→$ "hbс.bz.")
- after the third query $f($ hbс.bz..f. $)$ = 1 ("hbс.bz\[..\]f." $→$ "hbс.bz.f.")
Note to the second sample test.
The original string is ".cc.".
- after the first query: $f($ ..c. $)$ = 1 ("\[..\]c." $→$ ".c.")
- after the second query: $f($ .... $)$ = 3 ("\[..\].." $→$ "\[..\]." $→$ "\[..\]" $→$ ".")
- after the third query: $f($ .a.. $)$ = 1 (".a\[..\]" $→$ ".a.")
- after the fourth query: $f($ aa.. $)$ = 1 ("aa\[..\]" $→$ "aa.")
The original string is ".b..bz....".
- after the first query $f($ hb..bz.... $)$ = 4 ("hb\[..\]bz...." $→$ "hb.bz\[..\].." $→$ "hb.bz\[..\]." $→$ "hb.bz\[..\]" $→$ "hb.bz.")
- after the second query $f($ hbс.bz.... $)$ = 3 ("hbс.bz\[..\].." $→$ "hbс.bz\[..\]." $→$ "hbс.bz\[..\]" $→$ "hbс.bz.")
- after the third query $f($ hbс.bz..f. $)$ = 1 ("hbс.bz\[..\]f." $→$ "hbс.bz.f.")
Note to the second sample test.
The original string is ".cc.".
- after the first query: $f($ ..c. $)$ = 1 ("\[..\]c." $→$ ".c.")
- after the second query: $f($ .... $)$ = 3 ("\[..\].." $→$ "\[..\]." $→$ "\[..\]" $→$ ".")
- after the third query: $f($ .a.. $)$ = 1 (".a\[..\]" $→$ ".a.")
- after the fourth query: $f($ aa.. $)$ = 1 ("aa\[..\]" $→$ "aa.")
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted