#P1894A. Secret Sport
Secret Sport
No submission language available for this problem.
Description
Let's consider a game in which two players, A and B, participate. This game is characterized by two positive integers, and .
The game consists of sets, and each set consists of plays. In each play, exactly one of the players, either A or B, wins. A set ends exactly when one of the players reaches wins in the plays of that set. This player is declared the winner of the set. The players play sets until one of them reaches wins in the sets. After that, the game ends, and this player is declared the winner of the entire game.
You have just watched a game but didn't notice who was declared the winner. You remember that during the game, plays were played, and you know which player won each play. However, you do not know the values of and . Based on the available information, determine who won the entire game — A or B. If there is not enough information to determine the winner, you should also report it.
Each test contains multiple test cases. The first line contains a single integer - the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer - the number of plays played during the game.
The second line of each test case contains a string of length , consisting of characters and . If , it means that player A won the -th play. If , it means that player B won the -th play.
It is guaranteed that the given sequence of plays corresponds to at least one valid game scenario, for some values of and .
For each test case, output:
- — if player A is guaranteed to be the winner of the game.
- — if player B is guaranteed to be the winner of the game.
- — if it is impossible to determine the winner of the game.
Input
Each test contains multiple test cases. The first line contains a single integer - the number of test cases. The description of the test cases follows.
The first line of each test case contains an integer - the number of plays played during the game.
The second line of each test case contains a string of length , consisting of characters and . If , it means that player A won the -th play. If , it means that player B won the -th play.
It is guaranteed that the given sequence of plays corresponds to at least one valid game scenario, for some values of and .
Output
For each test case, output:
- — if player A is guaranteed to be the winner of the game.
- — if player B is guaranteed to be the winner of the game.
- — if it is impossible to determine the winner of the game.
Note
In the first test case, the game could have been played with parameters , . The game consisted of set, in which player A won, as they won the first plays. In this scenario, player A is the winner. The game could also have been played with parameters , . It can be shown that there are no such and values for which player B would be the winner.
In the second test case, player B won all the plays. It can be easily shown that in this case, player B is guaranteed to be the winner of the game.
In the fourth test case, the game could have been played with parameters , :
- In the first set, plays were played: AAA. Player A is declared the winner of the set.
- In the second set, plays were played: AAA. Player A is declared the winner of the set.
- In the third set, plays were played: AABBB. Player B is declared the winner of the set.
- In the fourth set, plays were played: AABBB. Player B is declared the winner of the set.
- In the fifth set, plays were played: BBAB. Player B is declared the winner of the set.
In total, player B was the first player to win sets. They are declared the winner of the game.