Moo Route

아직 제출이 없습니다시간 제한2초메모리 제한1024 MB

문제

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 A_0,A_1,,A_N1A\_0,A\_1,\dots,A\_{N-1} (1N1051\leq N \leq 10^5, 1A_i1061 \leq A\_i \leq 10^6, A_i106\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=0N1A_iT = \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 A_0,A_1,,A_N1A\_0,A\_1,\dots,A\_{N-1}.

출력

Output a string SS of length T=_i=0N1A_iT = \sum\_{i=0}^{N-1} A\_i where S_iS\_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.