CF1919A.Wallet Exchange

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Alice and Bob are bored, so they decide to play a game with their wallets. Alice has aa coins in her wallet, while Bob has bb coins in his wallet.

Both players take turns playing, with Alice making the first move. In each turn, the player will perform the following steps in order:

  1. Choose to exchange wallets with their opponent, or to keep their current wallets.
  2. Remove 11 coin from the player's current wallet. The current wallet cannot have 00 coins before performing this step.

The player who cannot make a valid move on their turn loses. If both Alice and Bob play optimally, determine who will win the game.

输入格式

Each test contains multiple test cases. The first line contains a single integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases. The description of the test cases follows.

The first and only line of each test case contains two integers aa and bb ( 1a,b1091 \le a, b \le 10^9 ) — the number of coins in Alice's and Bob's wallets, respectively.

输出格式

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

输入输出样例

  • 输入#1

    10
    1 1
    1 4
    5 3
    4 5
    11 9
    83 91
    1032 9307
    839204 7281
    1000000000 1000000000
    53110 2024

    输出#1

    Bob
    Alice
    Bob
    Alice
    Bob
    Bob
    Alice
    Alice
    Bob
    Bob

说明/提示

In the first test case, an example of the game is shown below:

  • Alice chooses to not swap wallets with Bob in step 1 of her move. Now, a=0a=0 and b=1b=1 .
  • Since Alice's wallet is empty, Bob must choose to not swap their wallets in step 1 of his move. Now, a=0a=0 and b=0b=0 .
  • Since both Alice's and Bob's wallets are empty, Alice is unable to make a move. Hence, Bob wins.

In the second test case, an example of the game is shown below:

  • Alice chooses to swap wallets with Bob in step 1 of her move. Now, a=3a=3 and b=1b=1 .
  • Bob chooses to swap wallets with Alice in step 1 of his move. Now, a=1a=1 and b=2b=2 .
  • Alice chooses to not swap wallets with Bob in step 1 of her move. Now, a=0a=0 and b=2b=2 .
  • Since Alice's wallet is empty, Bob can only choose to not swap wallets with Alice in step 1 of his move. Now, a=0a=0 and b=1b=1 .
  • Since Alice's wallet is empty, Alice can only choose to swap wallets with Bob in step 1 of her move. Now, a=0a=0 and b=0b=0 .
  • Since both Alice's wallet and Bob's wallet are empty, Bob is unable to make a move. Hence, Alice wins.
首页