CF1696F.Tree Recovery

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Fishingprince loves trees. A tree is a connected undirected graph without cycles.

Fishingprince has a tree of nn vertices. The vertices are numbered 11 through nn . Let d(x,y)d(x,y) denote the shortest distance on the tree from vertex xx to vertex yy , assuming that the length of each edge is 11 .

However, the tree was lost in an accident. Fortunately, Fishingprince still remembers some information about the tree. More specifically, for every triple of integers x,y,zx,y,z ( 1x<yn1\le x<y\le n , 1zn1\le z\le n ) he remembers whether d(x,z)=d(y,z)d(x,z)=d(y,z) or not.

Help him recover the structure of the tree, or report that no tree satisfying the constraints exists.

输入格式

Each test contains multiple test cases. The first line contains the number of test cases tt ( 1t2001 \le t \le 200 ). Description of the test cases follows.

The first line of each test case contains an integer nn ( 2n1002\le n\le 100 ) — the number of vertices in the tree.

Then n1n-1 lines follow. The ii -th line of these n1n-1 lines contains nin-i strings of length nn consisting of 0 and 1. If the kk -th character in the jj -th string of the ii -th line is 0, it means that d(i,k)d(i+j,k)d(i,k)\ne d(i+j,k) ; if the kk -th character in the jj -th string of the ii -th line is 1, it means that d(i,k)=d(i+j,k)d(i,k)=d(i+j,k) .

It is guaranteed that in one input file,

  • there are at most 22 test cases that have n>50n>50 ;
  • there are at most 55 test cases that have n>20n>20 .

输出格式

For each test case:

  • if no answer exists, output No;
  • otherwise, on the first line output Yes. Then output n1n-1 lines. Each line should contain two integers x,yx,y ( 1x,yn1\le x,y\le n ), denoting an edge between vertices xx and yy of the tree. If there are multiple solutions, print any.

When printing Yes and No, you can print each letter in any case (upper or lower).

输入输出样例

  • 输入#1

    5
    2
    00
    2
    10
    3
    001 000
    000
    3
    001 010
    000
    5
    00000 01001 00000 01100
    00000 10000 00000
    00000 11010
    00000

    输出#1

    Yes
    1 2
    No
    Yes
    1 3
    2 3
    No
    Yes
    1 2
    1 4
    2 3
    2 5
首页