A13517 | Matrix Game
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ashish and Vivek play a game on a matrix consisting of $n$ rows and $m$ columns, where they take turns claiming cells. Unclaimed cells are represented by $0$ , while claimed cells are represented by $1$ . The initial state of the matrix is given. There can be some claimed cells in the initial state.
In each turn, a player must claim a cell. A cell may be claimed if it is unclaimed and does not share a row or column with any other already claimed cells. When a player is unable to make a move, he loses and the game ends.
If Ashish and Vivek take turns to move and Ashish goes first, determine the winner of the game if both of them are playing optimally.
Optimal play between two players means that both players choose the best possible strategy to achieve the best possible outcome for themselves.
In each turn, a player must claim a cell. A cell may be claimed if it is unclaimed and does not share a row or column with any other already claimed cells. When a player is unable to make a move, he loses and the game ends.
If Ashish and Vivek take turns to move and Ashish goes first, determine the winner of the game if both of them are playing optimally.
Optimal play between two players means that both players choose the best possible strategy to achieve the best possible outcome for themselves.
输入格式
The first line consists of a single integer $t$ $(1 \le t \le 50)$ — the number of test cases. The description of the test cases follows.
The first line of each test case consists of two space-separated integers $n$ , $m$ $(1 \le n, m \le 50)$ — the number of rows and columns in the matrix.
The following $n$ lines consist of $m$ integers each, the $j$ -th integer on the $i$ -th line denoting $a_{i,j}$ $(a_{i,j} \in \{0, 1\})$ .
The first line of each test case consists of two space-separated integers $n$ , $m$ $(1 \le n, m \le 50)$ — the number of rows and columns in the matrix.
The following $n$ lines consist of $m$ integers each, the $j$ -th integer on the $i$ -th line denoting $a_{i,j}$ $(a_{i,j} \in \{0, 1\})$ .
输出格式
For each test case if Ashish wins the game print "Ashish" otherwise print "Vivek" (without quotes).
输入输出样例
输入 #1
4 2 2 0 0 0 0 2 2 0 0 0 1 2 3 1 0 1 1 1 0 3 3 1 0 0 0 0 0 1 0 0
输出 #1
Vivek Ashish Vivek Ashish
For the first case: One possible scenario could be: Ashish claims cell $(1, 1)$ , Vivek then claims cell $(2, 2)$ . Ashish can neither claim cell $(1, 2)$ , nor cell $(2, 1)$ as cells $(1, 1)$ and $(2, 2)$ are already claimed. Thus Ashish loses. It can be shown that no matter what Ashish plays in this case, Vivek will win.
For the second case: Ashish claims cell $(1, 1)$ , the only cell that can be claimed in the first move. After that Vivek has no moves left.
For the third case: Ashish cannot make a move, so Vivek wins.
For the fourth case: If Ashish claims cell $(2, 3)$ , Vivek will have no moves left.
For the second case: Ashish claims cell $(1, 1)$ , the only cell that can be claimed in the first move. After that Vivek has no moves left.
For the third case: Ashish cannot make a move, so Vivek wins.
For the fourth case: If Ashish claims cell $(2, 3)$ , Vivek will have no moves left.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted