CF1704F.Colouring Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Alice and Bob are playing a game. There are n cells in a row. Initially each cell is either red or blue. Alice goes first.
On each turn, Alice chooses two neighbouring cells which contain at least one red cell, and paints that two cells white. Then, Bob chooses two neighbouring cells which contain at least one blue cell, and paints that two cells white. The player who cannot make a move loses.
Find the winner if both Alice and Bob play optimally.
Note that a chosen cell can be white, as long as the other cell satisfies the constraints.
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of test cases. Description of test cases follows.
For each test case, the first line contains an integer n ( 2≤n≤5⋅105 ) — the number of cells.
The second line contains a string s of length n — the initial state of the cells. The i -th cell is red if $s_i = $ R, blue if $s_i = $ B.
It is guaranteed that the sum of n over all test cases does not exceed 5⋅105 .
输出格式
For each test case, output the name of the winner on a separate line.
输入输出样例
输入#1
8 3 BRB 5 RRBBB 6 RBRBRB 8 BBRRBRRB 6 BRRBRB 12 RBRBRBRBRRBB 12 RBRBRBRBBBRR 4 RBBR
输出#1
Bob Bob Alice Alice Alice Alice Bob Bob
说明/提示
In the notes, the cell numbers increase from left to right.
In the first testcase for Alice, she has two choices: paint the first and the second cells, or paint the second and the third cells. No matter what choice Alice makes, there will be exactly one blue cell after Alice's move. Bob just needs to paint the blue cell and its neighbour, then every cell will be white and Alice can't make a move. So Bob is the winner.
In the second testcase no matter what Alice chooses, Bob can choose to paint the fourth and fifth cells in 2 turns.
In the third testcase at first, Alice paints the third and the fourth cells. It doesn't matter if Bob paints the first and the second cells or the fifth and sixth cells, as Alice can paint the other two cells.
In the fourth testcase at first, Alice paints the second and the third cells. If Bob paints the fifth and the sixth cells or the fourth and the fifth cells, then Alice paints the seventh and the eighth cells. If Bob paints the seventh and the eighth cells, then Alice paints the fifth and the sixth cells.
In the fifth Alice chooses the middle two cells at first, then Bob obviously has only two options, whichever variant he chooses, Alice can choose the other one and win.
In the eighth no matter what Alice chooses, Bob can choose the other two symmetrical cells.