题库练习 New Year and the Tricolore Recreation
← 上一题 下一题 →

A12362 | New Year and the Tricolore Recreation

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

题目描述

Alice and Bob play a game on a grid with $n$ rows and infinitely many columns. In each row, there are three tokens, blue, white and red one. Before the game starts and after every move, the following two conditions must hold:

- Any two tokens are not in the same cell.
- In each row, the blue token is to the left of the white token, and the red token is to the right of the white token.

First, they pick a positive integer $f$ , whose value is valid for the whole game. Second, the starting player is chosen and makes his or her first turn. Then players take alternating turns. The player who is unable to make a move loses.

During a move, a player first selects an integer $k$ that is either a prime number or a product of two (not necessarily distinct) primes. The smallest possible values of $k$ are thus $2, 3, 4, 5, 6, 7, 9, 10, 11, 13, 14, 15, 17, 19, \dots$ . Furthermore, $k$ must not be equal to the previously picked integer $f$ . Each turn, a move is performed in exactly one of the rows.

If it is Alice's turn, she chooses a single blue token and moves it $k$ cells to the right. Alternatively, she may move both the blue and the white token in the same row by the same amount $k$ to the right.

On the other hand, Bob selects a single red token and moves it $k$ cells to the left. Similarly, he may also move the white and the red token in the corresponding row by $k$ to the left.

Note that Alice may never move a red token, while Bob may never move a blue one. Remember that after a move, the two conditions on relative positions of the tokens must still hold.

Both players play optimally. Given the initial state of the board, determine who wins for two games: if Alice starts and if Bob starts.

输入格式

The first line contains a two integers $n$ and $f$ ( $1 \leq n \leq 10^5$ , $2 \leq f \leq 2 \cdot 10^5$ ) — the number of rows and the forbidden move, respectively.

Each of the next $n$ lines contains three integers $b_i$ , $w_i$ , $r_i$ ( $-10^5 \leq b_i < w_i < r_i \leq 10^5$ ) — the number of column in which the blue, white and red token lies in the $i$ -th row, respectively.

输出格式

Output two lines.

The first line should contain the name of the winner when Alice starts, and the second line should contain the name of the winner when Bob starts.

输入输出样例

输入 #1
1 6
0 3 9
输出 #1
Alice
Bob
输入 #2
1 2
0 3 9
输出 #2
Alice
Bob
输入 #3
10 133
-248 -193 -187
97 101 202
-72 67 91
23 89 215
-129 -108 232
-223 -59 236
-99 86 242
-137 -109 -45
-105 173 246
-44 228 243
输出 #3
Bob
Alice
C++ 编辑器
输入
输出