A13978 | Journey
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n + 1$ cities, numbered from $0$ to $n$ . $n$ roads connect these cities, the $i$ -th road connects cities $i - 1$ and $i$ ( $i \in [1, n]$ ).
Each road has a direction. The directions are given by a string of $n$ characters such that each character is either L or R. If the $i$ -th character is L, it means that the $i$ -th road initially goes from the city $i$ to the city $i - 1$ ; otherwise it goes from the city $i - 1$ to the city $i$ .
A traveler would like to visit as many cities of this country as possible. Initially, they will choose some city to start their journey from. Each day, the traveler must go from the city where they currently are to a neighboring city using one of the roads, and they can go along a road only if it is directed in the same direction they are going; i. e., if a road is directed from city $i$ to the city $i + 1$ , it is possible to travel from $i$ to $i + 1$ , but not from $i + 1$ to $i$ . After the traveler moves to a neighboring city, all roads change their directions to the opposite ones. If the traveler cannot go from their current city to a neighboring city, their journey ends; it is also possible to end the journey whenever the traveler wants to.
The goal of the traveler is to visit as many different cities as possible (they can visit a city multiple times, but only the first visit is counted). For each city $i$ , calculate the maximum number of different cities the traveler can visit during exactly one journey if they start in the city $i$ .
Each road has a direction. The directions are given by a string of $n$ characters such that each character is either L or R. If the $i$ -th character is L, it means that the $i$ -th road initially goes from the city $i$ to the city $i - 1$ ; otherwise it goes from the city $i - 1$ to the city $i$ .
A traveler would like to visit as many cities of this country as possible. Initially, they will choose some city to start their journey from. Each day, the traveler must go from the city where they currently are to a neighboring city using one of the roads, and they can go along a road only if it is directed in the same direction they are going; i. e., if a road is directed from city $i$ to the city $i + 1$ , it is possible to travel from $i$ to $i + 1$ , but not from $i + 1$ to $i$ . After the traveler moves to a neighboring city, all roads change their directions to the opposite ones. If the traveler cannot go from their current city to a neighboring city, their journey ends; it is also possible to end the journey whenever the traveler wants to.
The goal of the traveler is to visit as many different cities as possible (they can visit a city multiple times, but only the first visit is counted). For each city $i$ , calculate the maximum number of different cities the traveler can visit during exactly one journey if they start in the city $i$ .
输入格式
The first line contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
Each test case consists of two lines. The first line contains one integer $n$ ( $1 \le n \le 3 \cdot 10^5$ ). The second line contains the string $s$ consisting of exactly $n$ characters, each character is either L or R.
It is guaranteed that the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$ .
Each test case consists of two lines. The first line contains one integer $n$ ( $1 \le n \le 3 \cdot 10^5$ ). The second line contains the string $s$ consisting of exactly $n$ characters, each character is either L or R.
It is guaranteed that the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$ .
输出格式
For each test case, print $n + 1$ integers. The $i$ -th integer should be equal to the maximum number of different cities the traveler can visit during one journey if this journey starts in the $i$ -th city.
输入输出样例
输入 #1
2 6 LRRRLL 3 LRL
输出 #1
1 3 2 3 1 3 2 1 4 1 4
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted