CF1472D.Even-Odd Game

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

During their New Year holidays, Alice and Bob play the following game using an array aa of nn integers:

  • Players take turns, Alice moves first.
  • Each turn a player chooses any element and removes it from the array.
  • If Alice chooses even value, then she adds it to her score. If the chosen value is odd, Alice's score does not change.
  • Similarly, if Bob chooses odd value, then he adds it to his score. If the chosen value is even, then Bob's score does not change.

If there are no numbers left in the array, then the game ends. The player with the highest score wins. If the scores of the players are equal, then a draw is declared.

For example, if n=4n = 4 and a=[5,2,7,3]a = [5, 2, 7, 3] , then the game could go as follows (there are other options):

  • On the first move, Alice chooses 22 and get two points. Her score is now 22 . The array aa is now [5,7,3][5, 7, 3] .
  • On the second move, Bob chooses 55 and get five points. His score is now 55 . The array aa is now [7,3][7, 3] .
  • On the third move, Alice chooses 77 and get no points. Her score is now 22 . The array aa is now [3][3] .
  • On the last move, Bob chooses 33 and get three points. His score is now 88 . The array aa is empty now.
  • Since Bob has more points at the end of the game, he is the winner.

You want to find out who will win if both players play optimally. Note that there may be duplicate numbers in the array.

输入格式

The first line contains an integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Then tt test cases follow.

The first line of each test case contains an integer nn ( 1n21051 \le n \le 2 \cdot 10^5 ) — the number of elements in the array aa .

The next line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 1ai1091 \le a_i \le 10^9 ) — the array aa used to play the game.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output on a separate line:

  • "Alice" if Alice wins with the optimal play;
  • "Bob" if Bob wins with the optimal play;
  • "Tie", if a tie is declared during the optimal play.

输入输出样例

  • 输入#1

    4
    4
    5 2 7 3
    3
    3 2 1
    4
    2 2 2 2
    2
    7 8

    输出#1

    Bob
    Tie
    Alice
    Alice
首页