A12921 | Messy
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are fed up with your messy room, so you decided to clean it up.
Your room is a bracket sequence $s=s_{1}s_{2}\dots s_{n}$ of length $n$ . Each character of this string is either an opening bracket '(' or a closing bracket ')'.
In one operation you can choose any consecutive substring of $s$ and reverse it. In other words, you can choose any substring $s[l \dots r]=s_l, s_{l+1}, \dots, s_r$ and change the order of elements in it into $s_r, s_{r-1}, \dots, s_{l}$ .
For example, if you will decide to reverse substring $s[2 \dots 4]$ of string $s=$ "((()))" it will be equal to $s=$ "()(())".
A regular (aka balanced) bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters '1' and '+' between the original characters of the sequence. For example, bracket sequences "()()", "(())" are regular (the resulting expressions are: "(1)+(1)", "((1+1)+1)"), and ")(" and "(" are not.
A prefix of a string $s$ is a substring that starts at position $1$ . For example, for $s=$ "(())()" there are $6$ prefixes: "(", "((", "(()", "(())", "(())(" and "(())()".
In your opinion, a neat and clean room $s$ is a bracket sequence that:
- the whole string $s$ is a regular bracket sequence;
- and there are exactly $k$ prefixes of this sequence which are regular (including whole $s$ itself).
For example, if $k = 2$ , then "(())()" is a neat and clean room.
You want to use at most $n$ operations to make your room neat and clean. Operations are applied one after another sequentially.
It is guaranteed that the answer exists. Note that you do not need to minimize the number of operations: find any way to achieve the desired configuration in $n$ or less operations.
Your room is a bracket sequence $s=s_{1}s_{2}\dots s_{n}$ of length $n$ . Each character of this string is either an opening bracket '(' or a closing bracket ')'.
In one operation you can choose any consecutive substring of $s$ and reverse it. In other words, you can choose any substring $s[l \dots r]=s_l, s_{l+1}, \dots, s_r$ and change the order of elements in it into $s_r, s_{r-1}, \dots, s_{l}$ .
For example, if you will decide to reverse substring $s[2 \dots 4]$ of string $s=$ "((()))" it will be equal to $s=$ "()(())".
A regular (aka balanced) bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters '1' and '+' between the original characters of the sequence. For example, bracket sequences "()()", "(())" are regular (the resulting expressions are: "(1)+(1)", "((1+1)+1)"), and ")(" and "(" are not.
A prefix of a string $s$ is a substring that starts at position $1$ . For example, for $s=$ "(())()" there are $6$ prefixes: "(", "((", "(()", "(())", "(())(" and "(())()".
In your opinion, a neat and clean room $s$ is a bracket sequence that:
- the whole string $s$ is a regular bracket sequence;
- and there are exactly $k$ prefixes of this sequence which are regular (including whole $s$ itself).
For example, if $k = 2$ , then "(())()" is a neat and clean room.
You want to use at most $n$ operations to make your room neat and clean. Operations are applied one after another sequentially.
It is guaranteed that the answer exists. Note that you do not need to minimize the number of operations: find any way to achieve the desired configuration in $n$ or less operations.
输入格式
The first line contains integer number $t$ ( $1 \le t \le 100$ ) — the number of test cases in the input. Then $t$ test cases follow.
The first line of a test case contains two integers $n$ and $k$ ( $1 \le k \le \frac{n}{2}, 2 \le n \le 2000$ , $n$ is even) — length of $s$ and required number of regular prefixes.
The second line of a test case contains $s$ of length $n$ — the given bracket sequence. It contains only '(' and ')'.
It is guaranteed that there are exactly $\frac{n}{2}$ characters '(' and exactly $\frac{n}{2}$ characters ')' in the given string.
The sum of all values $n$ over all the test cases in the input doesn't exceed $2000$ .
The first line of a test case contains two integers $n$ and $k$ ( $1 \le k \le \frac{n}{2}, 2 \le n \le 2000$ , $n$ is even) — length of $s$ and required number of regular prefixes.
The second line of a test case contains $s$ of length $n$ — the given bracket sequence. It contains only '(' and ')'.
It is guaranteed that there are exactly $\frac{n}{2}$ characters '(' and exactly $\frac{n}{2}$ characters ')' in the given string.
The sum of all values $n$ over all the test cases in the input doesn't exceed $2000$ .
输出格式
For each test case print an answer.
In the first line print integer $m$ ( $0 \le m \le n$ ) — the number of operations. You do not need to minimize $m$ , any value is suitable.
In the following $m$ lines print description of the operations, each line should contain two integers $l,r$ ( $1 \le l \le r \le n$ ), representing single reverse operation of $s[l \dots r]=s_{l}s_{l+1}\dots s_{r}$ . Operations are applied one after another sequentially.
The final $s$ after all operations should be a regular, also it should be exactly $k$ prefixes (including $s$ ) which are regular.
It is guaranteed that the answer exists. If there are several possible answers you can print any.
In the first line print integer $m$ ( $0 \le m \le n$ ) — the number of operations. You do not need to minimize $m$ , any value is suitable.
In the following $m$ lines print description of the operations, each line should contain two integers $l,r$ ( $1 \le l \le r \le n$ ), representing single reverse operation of $s[l \dots r]=s_{l}s_{l+1}\dots s_{r}$ . Operations are applied one after another sequentially.
The final $s$ after all operations should be a regular, also it should be exactly $k$ prefixes (including $s$ ) which are regular.
It is guaranteed that the answer exists. If there are several possible answers you can print any.
输入输出样例
输入 #1
4 8 2 ()(())() 10 3 ))()()()(( 2 1 () 2 1 )(
输出 #1
4 3 4 1 1 5 8 2 2 3 4 10 1 4 6 7 0 1 1 2
In the first example, the final sequence is "()(()())", where two prefixes are regular, "()" and "()(()())". Note, that all the operations except "5 8" in the example output are useless (they do not change $s$ ).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted