LASERTAG - Lasertag

no tags 

As is tradition, one afternoon of Výberko is without a contest. On that afternoon, some fun optional activity is usually planned for those extroverted enough to go out and do something. One time, it was laser tag!

The battles were fierce, and the legends stay with us to this very day. At one point, they say, there was a temporary blackout on the battleground and the lights went out.

Each participant, at this point already a seasoned veteran with immaculate aim, prepared for the power to jump back on, reigniting the fierce battle. It was incredibly important to achieve as many points once it did, as surely the blackout caused the score counters to be reset to 0.

As all legendary warriors think alike, they all came up with the same strategy:

1. Point your laser gun north, i.e. in the positive Y-axis direction. (All participants are from Výberko, so it is ordinary for them to think in these terms.)

2. Once the power comes back on, start turning in the direction of your dominant hand at a constant speed of 1 degree per second.

3. Whenever you face someone, shoot them instantly. (If there are multiple people standing in that direction, shoot them all.)

4. After 360 seconds, when everyone is facing north again, stop and assess the results. Brag about your score.

Player A gets 1 point for shooting player B, if at that time player B has not shot player A yet.

All the participants came back to Výberko bragging about how many points they scored.

Paulinka stayed in the computer lab bashing her head against the 10 point problem that everyone else solved in the morning. Their bragging is getting on her nerves.

To take them down a notch, she decided to find out how many points everyone *really* got.

Since Paulinka can't even solve a 10 point problem, she needs your help!

Task

Each player can be modeled as a point in a 2D plane.
The Y axis grows in the direction from south to north and the X axis grows from west to east.
At time 0, each player is pointing their laser gun in the positive Y direction. Then, they start turning, either clockwise (right-handed) or anticlockwise (left-handed), all at the same angular velocity.

For the purposes of the problem, both the players and the laser have zero width, and the laser can shoot through players.

Player A gets 1 point for shooting player B if and only if A shot B first (B didn't shoot A yet).

Calculate the score of each player after they complete one full rotation.

Input

The first line contains an integer t (1 ≤ t ≤ 20) - the number of games. t descriptions of games follow.

For each game the first line contains an integer n (2 ≤ n ≤ 300000) - the number of players. Sum of n in a single file will not exceed 300000.

n lines follow, each describing one player in the form x y h, where -109 x,y 109 are their coordinates, and h is the character L if they're left-handed or R if they're right-handed.

Since players are generally introverted, they have instinctively positioned themselves on different x and y coordinates: all x coordinates in the input are distinct, and all y coordinates in the input are distinct.

Output

For each game output n lines, the i-th of which contains a single integer: the score of player number i, in the same order as they appeared in the input.

Example

Input:

2
3
0 0 L
-2 1 R
-1 -1 R
3
0 0 R
-2 1 R
-1 -1 R

Output:

1
1
1
0
2
1



In the first game, Player 1 shoots player 2 long before player 2 shoots player 1 back. Similarly, player 2 gets a point for shooting player 3 and player 3 for player 1. So this particular game looks a bit like rock-paper-scissors.

Being right-handed would not turn out well for the first player. Now player 1 loses to both opponents.



Added by:Hodobox
Date:2019-09-06
Time limit:3s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:own problem