Codeforces Global Round 28 |
---|
Finished |
This is the easy version of the problem. The difference between the versions is that in this version, you need to find any one good array. You can hack only if you solved all versions of this problem.
Kevin is visiting the Red Church, and he found a puzzle on the wall.
For an array $$$ a $$$, let $$$ c(l,r) $$$ indicate how many distinct numbers are among $$$ a_l, a_{l+1}, \ldots, a_r $$$. In particular, if $$$ l > r $$$, define $$$ c(l,r) = 0 $$$.
You are given a string $$$ s $$$ of length $$$ n $$$ consisting of letters $$$ \texttt{L} $$$ and $$$ \texttt{R} $$$ only. Let a non-negative array $$$ a $$$ be called good, if the following conditions hold for $$$ 1 \leq i \leq n $$$:
If there is a good array $$$a$$$, print any of the good arrays. Otherwise, report that no such arrays exists.
Each test contains multiple test cases. The first line contains a single integer $$$t$$$ ($$$1\le t \le 10^4$$$) — the number of test cases. The description of the test cases follows.
The first line of each test case contains a single integer $$$n$$$ ($$$2\leq n\leq 2\cdot 10^5$$$) — the length of string $$$s$$$.
The second line of each test case contains a string $$$s$$$ with a length $$$n$$$, containing only English uppercase letters $$$\verb!L!$$$ and $$$\verb!R!$$$.
It is guaranteed that the sum of $$$n$$$ over all test cases does not exceed $$$2\cdot 10^5$$$.
For each test case, if a good array exists, print $$$n$$$ non-negative integers: a good array $$$a$$$. Otherwise, print a single integer $$$-1$$$.
If there are multiple arrays $$$a$$$ satisfying the conditions, you can output any of them.
43LLR3RRL4RRLR5LLRLR
0 1 0 2 1 2 -1 0 1 2 3 0
In the first test case, the array $$$[0,1,0]$$$ satisfies the conditions because:
In the second test case, another suitable answer is $$$[1,1,1]$$$.
In the third test case, it can be proven that there's no array satisfying the conditions.
Name |
---|