CF1919G.Tree LGM

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

In TreeWorld, there is a popular two-player game played on a tree with nn vertices labelled from 11 to nn . In this game, the tournament leaders first choose a vertex to be the root of the tree and choose another vertex (possibly the same vertex as the root) to place a coin on. Then, each player will take turns moving the coin to any child ^\dagger of the vertex that the coin is currently on. The first player who is unable to make a move loses.

Alice wants to be a tree LGM, so she spends a lot of time studying the game. She wrote down an nn by nn matrix ss , where si,j=1s_{i,j} = \mathtt{1} if the first player can win with the root of the tree chosen to be vertex ii , and the coin was initially placed on vertex jj . Otherwise, si,j=0s_{i, j} = \mathtt{0} . Alice is a perfectionist, so she assumes that both players play perfectly in the game.

However, she accidentally knocked her head on the way to the tournament and forgot what the tree looked like. Determine whether there exists a tree that satisfies the winning and losing states represented by matrix ss , and if it exists, construct a valid tree.

^\dagger A vertex cc is a child of vertex uu if there is an edge between cc and uu , and cc does not lie on the unique simple path from the root to vertex uu .

输入格式

The first line contains a single integer nn ( 1n50001 \le n \le 5000 ) — the number of vertices in the tree.

Each of the next nn lines contains a string with nn characters, the jj -th character of the ii -th line representing si,js_{i, j} ( si,j{0,1}s_{i, j} \in \{\mathtt{0}, \mathtt{1}\} ) — the winning and losing states of the tree.

输出格式

If there is no tree satisfying the winning and losing states represented by matrix ss , print a single line containing "NO".

Otherwise, if there exists a tree satisfying matrix ss , print "YES" on the first line, followed by n1n - 1 lines each containing two integers uu and vv ( 1u,vn1 \le u, v \le n ) representing that the tree has an edge between vertices uu and vv .

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.

If there are multiple trees satisfying the winning and losing states represented by matrix ss , print any of them.

输入输出样例

  • 输入#1

    4
    1100
    0101
    0011
    0101

    输出#1

    YES
    4 1
    3 2
    2 4
  • 输入#2

    3
    001
    010
    100

    输出#2

    NO

说明/提示

In the first test case, the line graph 1 ⁣ ⁣4 ⁣ ⁣2 ⁣ ⁣31\!-\!4\!-\!2\!-\!3 satisfies the winning and losing states represented by matrix ss . For example, s3,3=1s_{3,3} = 1 as the first player can move the coin from 323\rightarrow 2 , then the second player moves the coin from 242\rightarrow 4 , and finally, the first player moves the coin from 414\rightarrow 1 . At this point, 11 has no children, so the second player is unable to make a move and loses. On the other hand, s1,3=0s_{1,3} = 0 as if 11 is the root, then 33 has no children so the first player is unable to make the first move and loses.

In the second test case, it is possible to prove that no tree satisfies the winning and losing states represented by matrix ss .

首页