A15970 | Binary String Copying
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given a string $s$ consisting of $n$ characters 0 and/or 1.
You make $m$ copies of this string, let the $i$ -th copy be the string $t_i$ . Then you perform exactly one operation on each of the copies: for the $i$ -th copy, you sort its substring $[l_i; r_i]$ (the substring from the $l_i$ -th character to the $r_i$ -th character, both endpoints inclusive). Note that each operation affects only one copy, and each copy is affected by only one operation.
Your task is to calculate the number of different strings among $t_1, t_2, \ldots, t_m$ . Note that the initial string $s$ should be counted only if at least one of the copies stays the same after the operation.
You make $m$ copies of this string, let the $i$ -th copy be the string $t_i$ . Then you perform exactly one operation on each of the copies: for the $i$ -th copy, you sort its substring $[l_i; r_i]$ (the substring from the $l_i$ -th character to the $r_i$ -th character, both endpoints inclusive). Note that each operation affects only one copy, and each copy is affected by only one operation.
Your task is to calculate the number of different strings among $t_1, t_2, \ldots, t_m$ . Note that the initial string $s$ should be counted only if at least one of the copies stays the same after the operation.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the length of $s$ and the number of copies, respectively.
The second line contains $n$ characters 0 and/or 1 — the string $s$ .
Then $m$ lines follow. The $i$ -th of them contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le n$ ) — the description of the operation applied to the $i$ -th copy.
The sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ . The sum of $m$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $m$ ( $1 \le n, m \le 2 \cdot 10^5$ ) — the length of $s$ and the number of copies, respectively.
The second line contains $n$ characters 0 and/or 1 — the string $s$ .
Then $m$ lines follow. The $i$ -th of them contains two integers $l_i$ and $r_i$ ( $1 \le l_i \le r_i \le n$ ) — the description of the operation applied to the $i$ -th copy.
The sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ . The sum of $m$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
Print one integer — the number of different strings among $t_1, t_2, \ldots, t_m$ .
输入输出样例
输入 #1
3 6 5 101100 1 2 1 3 2 4 5 5 1 6 6 4 100111 2 2 1 4 1 3 1 2 1 1 0 1 1
输出 #1
3 3 1
Consider the first example. Copies below are given in order of the input operations. Underlined substrings are substrings that are sorted:
1. 101100 $\rightarrow$ 011100;
2. 101100 $\rightarrow$ 011100;
3. 101100 $\rightarrow$ 101100;
4. 101100 $\rightarrow$ 101100;
5. 101100 $\rightarrow$ 000111.
There are three different strings among $t_1, t_2, t_3, t_4, t_5$ : 000111, 011100 and 101100.
Consider the second example:
1. 100111 $\rightarrow$ 100111;
2. 100111 $\rightarrow$ 001111;
3. 100111 $\rightarrow$ 001111;
4. 100111 $\rightarrow$ 010111.
There are three different strings among $t_1, t_2, t_3, t_4$ : 001111, 010111 and 100111.
1. 101100 $\rightarrow$ 011100;
2. 101100 $\rightarrow$ 011100;
3. 101100 $\rightarrow$ 101100;
4. 101100 $\rightarrow$ 101100;
5. 101100 $\rightarrow$ 000111.
There are three different strings among $t_1, t_2, t_3, t_4, t_5$ : 000111, 011100 and 101100.
Consider the second example:
1. 100111 $\rightarrow$ 100111;
2. 100111 $\rightarrow$ 001111;
3. 100111 $\rightarrow$ 001111;
4. 100111 $\rightarrow$ 010111.
There are three different strings among $t_1, t_2, t_3, t_4$ : 001111, 010111 and 100111.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted