#L9015. [USACO23JAN] Moo Route S
[USACO23JAN] Moo Route S
P9015 [USACO23JAN] Moo Route S
题目描述
Farmer Nhoj dropped Bessie in the middle of nowhere! At time , Bessie is located at on an infinite number line. She frantically searches for an exit by moving left or right by unit each second. However, there actually is no exit and after seconds, Bessie is back at , tired and resigned.
Farmer Nhoj tries to track Bessie but only knows how many times Bessie crosses , given by an array $A_0,A_1, \cdots ,A_{N−1} (1 \le N \le 10^5, 1 \le A_i \le 10^6, \sum A_i \le 10^6)$. Bessie never reaches nor .
In particular, Bessie's route can be represented by a string of s and s where the -th character represents the direction Bessie moves in during the ith second. The number of direction changes is defined as the number of occurrences of s plus the number of occurrences of s.
Please help Farmer Nhoj find any route Bessie could have taken that is consistent with A and minimizes the number of direction changes. It is guaranteed that there is at least one valid route.
输入格式
The first line contains . The second line contains .
输出格式
Output a string of length where is L
or R
, indicating the direction Bessie travels in during second . If there are multiple routes minimizing the number of direction changes, output any.
输入输出样例 1
2
2 4
RRLRLL
输入输出样例 2
3
2 4 4
RRRLLRRLLL
说明/提示
Explanation for Sample 1
There is only valid route, corresponding to the route $0 \rightarrow 1 \rightarrow 2 \rightarrow 1 \rightarrow 2 \rightarrow 1 \rightarrow 0$. Since this is the only possible route, it also has the minimum number of direction changes.
Explanation for Sample 2
There are possible routes:
RRLRRLRLLL
RRRLRLLRLL
RRRLLRRLLL
The first two routes have direction changes, while the last one has only . Thus the last route is the only correct output.
Scoring
- Inputs :
- Inputs :
- Inputs : No additional constraints.