A15572 | Hall of Fame
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Thalia is a Legendary Grandmaster in chess. She has $n$ trophies in a line numbered from $1$ to $n$ (from left to right) and a lamp standing next to each of them (the lamps are numbered as the trophies).
A lamp can be directed either to the left or to the right, and it illuminates all trophies in that direction (but not the one it is next to). More formally, Thalia has a string $s$ consisting only of characters 'L' and 'R' which represents the lamps' current directions. The lamp $i$ illuminates:
- trophies $1,2,\ldots, i-1$ if $s_i$ is 'L';
- trophies $i+1,i+2,\ldots, n$ if $s_i$ is 'R'.
She can perform the following operation at most once:
- Choose an index $i$ ( $1 \leq i < n$ );
- Swap the lamps $i$ and $i+1$ (without changing their directions). That is, swap $s_i$ with $s_{i+1}$ .
Thalia asked you to illuminate all her trophies (make each trophy illuminated by at least one lamp), or to tell her that it is impossible to do so. If it is possible, you can choose to perform an operation or to do nothing. Notice that lamps cannot change direction, it is only allowed to swap adjacent ones.
A lamp can be directed either to the left or to the right, and it illuminates all trophies in that direction (but not the one it is next to). More formally, Thalia has a string $s$ consisting only of characters 'L' and 'R' which represents the lamps' current directions. The lamp $i$ illuminates:
- trophies $1,2,\ldots, i-1$ if $s_i$ is 'L';
- trophies $i+1,i+2,\ldots, n$ if $s_i$ is 'R'.
She can perform the following operation at most once:
- Choose an index $i$ ( $1 \leq i < n$ );
- Swap the lamps $i$ and $i+1$ (without changing their directions). That is, swap $s_i$ with $s_{i+1}$ .
Thalia asked you to illuminate all her trophies (make each trophy illuminated by at least one lamp), or to tell her that it is impossible to do so. If it is possible, you can choose to perform an operation or to do nothing. Notice that lamps cannot change direction, it is only allowed to swap adjacent ones.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \leq t \leq 10\,000$ ). The description of the test cases follows.
The first line of each test case contains a positive integer $n$ ( $2 \leq n \leq 100\,000$ ) — the number of trophies.
The second line of each test case contains a string $s$ of length $n$ consisting only of characters 'L' and 'R' — the $i$ -th character describes the direction of the $i$ -th lamp.
It is guaranteed that the sum of $n$ over all test cases does not exceed $100\,000$ .
The first line of each test case contains a positive integer $n$ ( $2 \leq n \leq 100\,000$ ) — the number of trophies.
The second line of each test case contains a string $s$ of length $n$ consisting only of characters 'L' and 'R' — the $i$ -th character describes the direction of the $i$ -th lamp.
It is guaranteed that the sum of $n$ over all test cases does not exceed $100\,000$ .
输出格式
For each test case print $-1$ if it is impossible to illuminate all trophies by performing one operation (or doing nothing). Otherwise, print $0$ if you choose not to perform the operation (i.e., the trophies are illuminated by the initial positioning of the lamps), or an index $i$ ( $1 \leq i < n$ ) if you choose to swap lamps $i$ and $i+1$ .
If there are multiple answers, print any.
If there are multiple answers, print any.
输入输出样例
输入 #1
6 2 LL 2 LR 2 RL 2 RR 7 LLRLLLR 7 RRLRRRL
输出 #1
-1 1 0 -1 3 6
In the first example, it is possible to swap lamps $1$ and $2$ , or do nothing. In any case, the string "LL" is obtained. Not all trophies are illuminated since trophy $2$ is not illuminated by any lamp — lamp $1$ illuminates nothing and lamp $2$ illuminates only the trophy $1$ .
In the second example, it is necessary to swap lamps $1$ and $2$ . The string becomes "RL". Trophy $1$ is illuminated by lamp $2$ and trophy $2$ is illuminated by lamp $1$ , hence it is possible to illuminate all trophies.
In the third example, all trophies are initially illuminated — hence, not performing any operation is a valid solution.
In the last two examples performing swaps is not necessary as all trophies are illuminated initially. But, the presented solutions are also valid.
In the second example, it is necessary to swap lamps $1$ and $2$ . The string becomes "RL". Trophy $1$ is illuminated by lamp $2$ and trophy $2$ is illuminated by lamp $1$ , hence it is possible to illuminate all trophies.
In the third example, all trophies are initially illuminated — hence, not performing any operation is a valid solution.
In the last two examples performing swaps is not necessary as all trophies are illuminated initially. But, the presented solutions are also valid.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted