题库练习 Swap Game
← 上一题 下一题 →

A15560 | Swap Game

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Alice and Bob are playing a game on an array $a$ of $n$ positive integers. Alice and Bob make alternating moves with Alice going first.

In his/her turn, the player makes the following move:

- If $a_1 = 0$ , the player loses the game, otherwise:
- Player chooses some $i$ with $2\le i \le n$ . Then player decreases the value of $a_1$ by $1$ and swaps $a_1$ with $a_i$ .

Determine the winner of the game if both players play optimally.

输入格式

The input consists of multiple test cases. The first line contains a single integer $t$ $(1 \leq t \leq 2 \cdot 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 10^5)$ — the length of the array $a$ .

The second line of each test case contains $n$ integers $a_1,a_2 \ldots a_n$ $(1 \leq a_i \leq 10^9)$ — the elements of the array $a$ .

It is guaranteed that sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .

输出格式

For each test case, if Alice will win the game, output "Alice". Otherwise, output "Bob".

You can output each letter in any case. For example, "alIcE", "Alice", "alice" will all be considered identical.

输入输出样例

输入 #1
3
2
1 1
2
2 1
3
5 4 4
输出 #1
Bob
Alice
Alice
C++ 编辑器
输入
输出