A16263 | Imagination Castle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Given a chessboard of size $N \times M$ ( $N$ rows and $M$ columns). Each row is numbered from $1$ to $N$ from top to bottom and each column is numbered from $1$ to $M$ from left to right. The tile in row $r$ and column $c$ is denoted as $(r,c)$ . There exists $K$ distinct special tiles on the chessboard with the $i$ -th special tile being tile $(X_i,Y_i)$ . It is guaranteed that tile $(1,1)$ is not a special tile.
A new chess piece has been invented, which is the castle. The castle moves similarly to a rook in regular chess, but slightly differently. In one move, a castle that is on some tile can only move to another tile in the same row or in the same column, but only in the right direction or the down direction. Formally, in one move, the castle on tile $(r,c)$ can only move to tile $(r',c')$ if and only if one of the following two conditions is satisfied:
- $r'=r$ and $c'>c$ .
- $c'=c$ and $r'>r$ .
Chaneka and Bhinneka will play a game. In the beginning of the game, there is a castle in tile $(1,1)$ . The two players will play alternatingly with Chaneka going first. In one turn, the player on that turn must move the castle following the movement rules of the castle.
If a player moves the castle to a special tile on her turn, then that player wins the game and the game ends. If on a turn, the castle cannot be moved, the player on that turn loses and the game ends.
Given the size of the board and the locations of each special tile. Determine the winner of this game if Chaneka and Bhinneka plays optimally.
A new chess piece has been invented, which is the castle. The castle moves similarly to a rook in regular chess, but slightly differently. In one move, a castle that is on some tile can only move to another tile in the same row or in the same column, but only in the right direction or the down direction. Formally, in one move, the castle on tile $(r,c)$ can only move to tile $(r',c')$ if and only if one of the following two conditions is satisfied:
- $r'=r$ and $c'>c$ .
- $c'=c$ and $r'>r$ .
Chaneka and Bhinneka will play a game. In the beginning of the game, there is a castle in tile $(1,1)$ . The two players will play alternatingly with Chaneka going first. In one turn, the player on that turn must move the castle following the movement rules of the castle.
If a player moves the castle to a special tile on her turn, then that player wins the game and the game ends. If on a turn, the castle cannot be moved, the player on that turn loses and the game ends.
Given the size of the board and the locations of each special tile. Determine the winner of this game if Chaneka and Bhinneka plays optimally.
输入格式
The first line contains three integers $N$ , $M$ , and $K$ ( $1 \leq N,M \leq 2 \cdot 10^5$ ; $0 \leq K \leq \min(N \times M - 1, 2\cdot10^5)$ ) — the size of the chessboard and the number of special tiles.
The $i$ -th of the next $K$ lines contains two integers $X_i$ and $Y_i$ ( $1\leq X_i\leq N$ ; $1\leq Y_i\leq M$ ; $(X_i, Y_i) \neq (1,1)$ ) — the location of each special tile. The special tiles are pairwise distinct.
The $i$ -th of the next $K$ lines contains two integers $X_i$ and $Y_i$ ( $1\leq X_i\leq N$ ; $1\leq Y_i\leq M$ ; $(X_i, Y_i) \neq (1,1)$ ) — the location of each special tile. The special tiles are pairwise distinct.
输出格式
Output Chaneka if Chaneka is the winner, output Bhinneka if Bhinneka is the winner.
输入输出样例
输入 #1
4 5 3 1 3 4 4 1 5
输出 #1
Chaneka
输入 #2
2 2 0
输出 #2
Bhinneka
In the first example, the following is an illustration of the chessboard in the beginning of the game.

Chaneka can move the castle to special tile $(1,3)$ or $(1,5)$ directly on her first turn. Therefore, Chaneka is the winner.
In the second example, the following is an illustration of the chessboard in the beginning of the game.

Chaneka can only move the castle to tile $(1, 2)$ or $(2, 1)$ on her first turn. Whatever Chaneka does, Bhinneka will be able to directly move the castle to tile $(2, 2)$ . After that, on Chaneka's turn, she cannot move the castle, so Chaneka loses. Therefore, Bhinneka is the winner.

Chaneka can move the castle to special tile $(1,3)$ or $(1,5)$ directly on her first turn. Therefore, Chaneka is the winner.
In the second example, the following is an illustration of the chessboard in the beginning of the game.

Chaneka can only move the castle to tile $(1, 2)$ or $(2, 1)$ on her first turn. Whatever Chaneka does, Bhinneka will be able to directly move the castle to tile $(2, 2)$ . After that, on Chaneka's turn, she cannot move the castle, so Chaneka loses. Therefore, Bhinneka is the winner.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted