| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 2 초 | 256 MB | 11 | 10 | 6 | 85.714% |
Busy Beaver is taking a walk on a path of colorful tiles.
The path consists of a line of $N$ tiles, each colored either red (r), green (g), blue (b), or yellow (y).
Busy Beaver's walk will follow these rules:
Busy Beaver will record the sequence of tile colors he visits on the walk in order. Busy Beaver is confident that he can recreate any sequence of $N$ colors on his walk.
Prove him wrong by providing any sequence of $N$ colors he can't recreate.
It can be shown that an answer always exists.
Each test contains multiple test cases. The first line contains the number of test cases $T$ (1ドル \leq T \leq 10^4$). The description of the test cases follows.
The first line of each test case contains an integer $N$ (3ドル \leq N \leq 3000$) --- the number of tiles.
The second line of each test case contains a length $N$ string of characters in ('r', 'g', 'b', 'y'), the $i$'th character denoting the color of the $i$'th tile.
It is guaranteed that the sum of $N$ across all test cases is no more than 3ドル \cdot 10^5$.
For each test case, output the answer-sequence as a string of characters in ('r', 'g', 'b', 'y').
| 번호 | 배점 | 제한 |
|---|---|---|
| 1 | 10 | $N \leq 10, T \leq 10^3$. |
| 2 | 10 | $N \leq 100, T \leq 10^3$. |
| 3 | 80 | No additional constraints. |
3 3 rgb 3 gby 7 rgbybgr
yyy rrr yryryry
In the first test case, yellow never appears, so a sequence of 3ドル$ yellows is not possible.
In the second test case, red never appears, so a sequence of 3ドル$ reds is not possible.
In the third test case, every red tile is at least 3ドル$ positions away from the yellow tile. So, any walk transitioning from a yellow to a red tile is impossible.