A13132 | Blocks
来源USACO / 2021
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ blocks arranged in a row and numbered from left to right, starting from one. Each block is either black or white.
You may perform the following operation zero or more times: choose two adjacent blocks and invert their colors (white block becomes black, and vice versa).
You want to find a sequence of operations, such that they make all the blocks having the same color. You don't have to minimize the number of operations, but it should not exceed $3 \cdot n$ . If it is impossible to find such a sequence of operations, you need to report it.
You may perform the following operation zero or more times: choose two adjacent blocks and invert their colors (white block becomes black, and vice versa).
You want to find a sequence of operations, such that they make all the blocks having the same color. You don't have to minimize the number of operations, but it should not exceed $3 \cdot n$ . If it is impossible to find such a sequence of operations, you need to report it.
输入格式
The first line contains one integer $n$ ( $2 \le n \le 200$ ) — the number of blocks.
The second line contains one string $s$ consisting of $n$ characters, each character is either "W" or "B". If the $i$ -th character is "W", then the $i$ -th block is white. If the $i$ -th character is "B", then the $i$ -th block is black.
The second line contains one string $s$ consisting of $n$ characters, each character is either "W" or "B". If the $i$ -th character is "W", then the $i$ -th block is white. If the $i$ -th character is "B", then the $i$ -th block is black.
输出格式
If it is impossible to make all the blocks having the same color, print $-1$ .
Otherwise, print an integer $k$ ( $0 \le k \le 3 \cdot n$ ) — the number of operations. Then print $k$ integers $p_1, p_2, \dots, p_k$ $(1 \le p_j \le n - 1)$ , where $p_j$ is the position of the left block in the pair of blocks that should be affected by the $j$ -th operation.
If there are multiple answers, print any of them.
Otherwise, print an integer $k$ ( $0 \le k \le 3 \cdot n$ ) — the number of operations. Then print $k$ integers $p_1, p_2, \dots, p_k$ $(1 \le p_j \le n - 1)$ , where $p_j$ is the position of the left block in the pair of blocks that should be affected by the $j$ -th operation.
If there are multiple answers, print any of them.
输入输出样例
输入 #1
8 BWWWWWWB
输出 #1
3 6 2 4
输入 #2
4 BWBB
输出 #2
-1
输入 #3
5 WWWWW
输出 #3
0
输入 #4
3 BWB
输出 #4
2 2 1
In the first example, it is possible to make all blocks black in $3$ operations. Start with changing blocks $6$ and $7$ , so the sequence is "BWWWWBBB". Then change blocks $2$ and $3$ , so the sequence is "BBBWWBB". And finally, change blocks $4$ and $5$ , so all blocks are black.
It is impossible to make all colors equal in the second example.
All blocks are already white in the third example.
In the fourth example it is possible to make all blocks white in two operations: first operation is to change blocks $2$ and $3$ (so the sequence is "BBW"), and then change blocks $1$ and $2$ (so all blocks are white).
It is impossible to make all colors equal in the second example.
All blocks are already white in the third example.
In the fourth example it is possible to make all blocks white in two operations: first operation is to change blocks $2$ and $3$ (so the sequence is "BBW"), and then change blocks $1$ and $2$ (so all blocks are white).
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?