A12124 | New Road Network
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The king of some country $N$ decided to completely rebuild the road network. There are $n$ people living in the country, they are enumerated from $1$ to $n$ . It is possible to construct a road between the house of any citizen $a$ to the house of any other citizen $b$ . There should not be more than one road between any pair of citizens. The road network must be connected, i.e. it should be possible to reach every citizen starting from anyone using roads. To save funds, it was decided to build exactly $n-1$ road, so the road network should be a tree.
However, it is not that easy as it sounds, that's why the king addressed you for help. There are $m$ secret communities in the country, each of them unites a non-empty subset of citizens. The king does not want to conflict with any of the communities, so he wants to build the network such that the houses of members of each society form a connected subtree in network. A set of vertices forms a connected subtree if and only if the graph remains connected when we delete all the other vertices and all edges but ones that connect the vertices from the set.
Help the king to determine if it is possible to build the desired road network, and if it is, build it.
However, it is not that easy as it sounds, that's why the king addressed you for help. There are $m$ secret communities in the country, each of them unites a non-empty subset of citizens. The king does not want to conflict with any of the communities, so he wants to build the network such that the houses of members of each society form a connected subtree in network. A set of vertices forms a connected subtree if and only if the graph remains connected when we delete all the other vertices and all edges but ones that connect the vertices from the set.
Help the king to determine if it is possible to build the desired road network, and if it is, build it.
输入格式
Each test consists of one or more test cases.
The first line contains a single integer $t$ ( $1 \leq t \leq 2000$ ) — the number of test cases.
The following lines describe the test cases, each in the following format.
The first line contains two integers $n$ and $m$ ( $1 \leq n, m \leq 2000$ ) — the number of citizens and the number of secret communities.
The next $m$ lines contain the description of the communities. The $i$ -th of these lines contains a string $s_i$ of length $n$ , consisting of characters '0' and '1'. The citizen with number $j$ is a member of the $i$ -th community if and only if $s_{{i}{j}}=1$ . It is guaranteed that the string $s_i$ contains at least one character '1' for each $1 \leq i \leq m$ .
It is guaranteed that the sum of $n$ for all test cases does not exceed $2000$ and the sum of $m$ for all test cases does not exceed $2000$ .
The first line contains a single integer $t$ ( $1 \leq t \leq 2000$ ) — the number of test cases.
The following lines describe the test cases, each in the following format.
The first line contains two integers $n$ and $m$ ( $1 \leq n, m \leq 2000$ ) — the number of citizens and the number of secret communities.
The next $m$ lines contain the description of the communities. The $i$ -th of these lines contains a string $s_i$ of length $n$ , consisting of characters '0' and '1'. The citizen with number $j$ is a member of the $i$ -th community if and only if $s_{{i}{j}}=1$ . It is guaranteed that the string $s_i$ contains at least one character '1' for each $1 \leq i \leq m$ .
It is guaranteed that the sum of $n$ for all test cases does not exceed $2000$ and the sum of $m$ for all test cases does not exceed $2000$ .
输出格式
Print the answer for all test cases in the order they are given in the input, each in the following format.
If there is no way to build the desired road network, print "NO" (without quotes).
Otherwise in the first line print "YES" (without quotes).
In the next $n-1$ lines print the description of the road network: each line should contain two integers $a$ and $b$ ( $1 \leq a, b \leq n$ , $a \neq b$ ) that denote you build a road between houses of citizens $a$ and $b$ .
The roads should form a connected tree, and each community should form a connected subtree.
If there is no way to build the desired road network, print "NO" (without quotes).
Otherwise in the first line print "YES" (without quotes).
In the next $n-1$ lines print the description of the road network: each line should contain two integers $a$ and $b$ ( $1 \leq a, b \leq n$ , $a \neq b$ ) that denote you build a road between houses of citizens $a$ and $b$ .
The roads should form a connected tree, and each community should form a connected subtree.
输入输出样例
输入 #1
2 4 3 0011 1110 0111 3 3 011 101 110
输出 #1
YES 1 3 2 3 3 4 NO
In the first example you can build the following network:
It is easy to see that for each community all the houses of its members form a connected subtree. For example, the $2$ -nd community unites the citizens $1$ , $2$ , $3$ . They form a connected subtree, because if we delete everything except the houses $1$ , $2$ , $3$ and the roads between them, two roads will remain: between $1$ and $3$ and between $2$ and $3$ , forming a connected graph.
There is no network in the second example suitable for the king.
It is easy to see that for each community all the houses of its members form a connected subtree. For example, the $2$ -nd community unites the citizens $1$ , $2$ , $3$ . They form a connected subtree, because if we delete everything except the houses $1$ , $2$ , $3$ and the roads between them, two roads will remain: between $1$ and $3$ and between $2$ and $3$ , forming a connected graph.
There is no network in the second example suitable for the king.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted