CF919F.A Game With Numbers

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Imagine that Alice is playing a card game with her friend Bob. They both have exactly 88 cards and there is an integer on each card, ranging from 00 to 44 . In each round, Alice or Bob in turns choose two cards from different players, let them be aa and bb , where aa is the number on the player's card, and bb is the number on the opponent's card. It is necessary that ab0a·b≠0 . Then they calculate and replace the number aa with cc . The player who ends up with numbers on all 88 cards being 00 , wins.

Now Alice wants to know who wins in some situations. She will give you her cards' numbers, Bob's cards' numbers and the person playing the first round. Your task is to determine who wins if both of them choose the best operation in their rounds.

输入格式

The first line contains one positive integer TT ( 1<=T<=1000001<=T<=100000 ), denoting the number of situations you need to consider.

The following lines describe those TT situations. For each situation:

  • The first line contains a non-negative integer ff ( 0<=f<=10<=f<=1 ), where f=0f=0 means that Alice plays first and f=1f=1 means Bob plays first.
  • The second line contains 88 non-negative integers a1,a2,...,a8a_{1},a_{2},...,a_{8} ( 0<=ai<=40<=a_{i}<=4 ), describing Alice's cards.
  • The third line contains 88 non-negative integers b1,b2,...,b8b_{1},b_{2},...,b_{8} ( 0<=bi<=40<=b_{i}<=4 ), describing Bob's cards.

We guarantee that if f=0f=0 , we have . Also when f=1f=1 , holds.

输出格式

Output TT lines. For each situation, determine who wins. Output

  • "Alice" (without quotes) if Alice wins.
  • "Bob" (without quotes) if Bob wins.
  • "Deal" (without quotes) if it gets into a deal, i.e. no one wins.

输入输出样例

  • 输入#1

    4
    1
    0 0 0 0 0 0 0 0
    1 2 3 4 1 2 3 4
    1
    0 0 0 1 0 0 0 0
    0 0 0 0 4 0 0 0
    0
    1 0 0 0 0 0 0 0
    0 0 0 4 0 0 2 0
    1
    1 1 1 1 1 1 1 1
    1 1 1 1 1 1 1 1
    

    输出#1

    Alice
    Bob
    Alice
    Deal
    

说明/提示

In the first situation, Alice has all her numbers 00 . So she wins immediately.

In the second situation, Bob picks the numbers 44 and 11 . Because we have , Bob wins after this operation.

In the third situation, Alice picks the numbers 11 and 44 . She wins after this operation.

In the fourth situation, we can prove that it falls into a loop.

首页