CF1365A.Matrix Game

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Ashish and Vivek play a game on a matrix consisting of nn rows and mm columns, where they take turns claiming cells. Unclaimed cells are represented by 00 , while claimed cells are represented by 11 . 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.

输入格式

The first line consists of a single integer tt (1t50)(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 nn , mm (1n,m50)(1 \le n, m \le 50) — the number of rows and columns in the matrix.

The following nn lines consist of mm integers each, the jj -th integer on the ii -th line denoting ai,ja_{i,j} (ai,j{0,1})(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)(1, 1) , Vivek then claims cell (2,2)(2, 2) . Ashish can neither claim cell (1,2)(1, 2) , nor cell (2,1)(2, 1) as cells (1,1)(1, 1) and (2,2)(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)(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)(2, 3) , Vivek will have no moves left.

首页