#611
Unrated
Moo Route
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Farmer Nhoj dropped Bessie in the middle of nowhere! At time t=0t=0, Bessie is located at x=0x=0 on an infinite number line. She frantically searches for an exit by moving left or right by 11 unit each second. However, there actually is no exit and after TT seconds, Bessie is back at x=0x=0, tired and resigned.

Farmer Nhoj tries to track Bessie but only knows how many times Bessie crosses x=.5,1.5,2.5,,(N1).5x=.5, 1.5, 2.5, \ldots, (N-1).5, given by an array A0,A1,,AN1A_0,A_1,\dots,A_{N-1} (1N1051\leq N \leq 10^5, 1Ai1061 \leq A_i \leq 10^6, Ai106\sum A_i\le 10^6). Bessie never reaches x>Nx>N nor x<0x<0.

In particular, Bessie's route can be represented by a string of T=i=0N1AiT = \sum_{i=0}^{N-1} A_i LLs and RRs where the iith character represents the direction Bessie moves in during the iith second. The number of direction changes is defined as the number of occurrences of LRLRs plus the number of occurrences of RLRLs.

Please help Farmer Nhoj find any route Bessie could have taken that is consistent with AA and minimizes the number of direction changes. It is guaranteed that there is at least one valid route.

입력

The first line contains NN. The second line contains A0,A1,,AN1A_0,A_1,\dots,A_{N-1}.

출력

Output a string SS of length T=i=0N1AiT = \sum_{i=0}^{N-1} A_i where SiS_i is LL or RR, indicating the direction Bessie travels in during second ii. If there are multiple routes minimizing the number of direction changes, output any.

예제 입력 1

2
2 4

예제 출력 1

RRLRLL

예제 입력 2

3
2 4 4

예제 출력 2

RRRLLRRLLL

점수

Inputs 3-5: N2N\le 2Inputs 3-10: T=A0+A1++AN15000T = A_0 + A_1 + \cdots + A_{N-1} \leq 5000Inputs 11-20: No additional constraints.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.