306801: CF1252L. Road Construction
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Road Construction
题意翻译
有n个节点,每个点有一条出边,保证这些出边把图联通,这条出边可以用$m_i$ 种材料建造,然后有k个工人,每个工人能够使用一种材料,问有没有合理分配工人建边的方法,使得建出来的图联通,如果有,输出方案。题目描述
There are $ N $ cities in the country of Numbata, numbered from $ 1 $ to $ N $ . Currently, there is no road connecting them. Therefore, each of these $ N $ cities proposes a road candidate to be constructed. City $ i $ likes to connect with city $ A_i $ , so city $ i $ proposes to add a direct bidirectional road connecting city $ i $ and city $ A_i $ . It is guaranteed that no two cities like to connect with each other. In other words, there is no pair of integers $ i $ and $ j $ where $ A_i = j $ and $ A_j = i $ . It is also guaranteed that any pair of cities are connected by a sequence of road proposals. In other words, if all proposed roads are constructed, then any pair of cities are connected by a sequence of constructed road. City $ i $ also prefers the road to be constructed using a specific material. Each material can be represented by an integer (for example, $ 0 $ for asphalt, $ 1 $ for wood, etc.). The material that can be used for the road connecting city $ i $ and city $ A_i $ is represented by an array $ B_i $ containing $ M_i $ integers: $ [(B_i)_1, (B_i)_2, \dots, (B_i)_{M_i}] $ . This means that the road connecting city $ i $ and city $ A_i $ can be constructed with either of the material in $ B_i $ . There are $ K $ workers to construct the roads. Each worker is only familiar with one material, thus can only construct a road with a specific material. In particular, the $ i^{th} $ worker can only construct a road with material $ C_i $ . Each worker can only construct at most one road. You want to assign each worker to construct a road such that any pair of cities are connected by a sequence of constructed road.输入输出格式
输入格式
Input begins with a line containing two integers: $ N $ $ K $ ( $ 3 \le N \le 2000 $ ; $ 1 \le K \le 2000 $ ) representing the number of cities and the number of workers, respectively. The next $ N $ lines each contains several integers: $ A_i $ $ M_i $ $ (B_i)_1 $ , $ (B_i)_2 $ , $ \cdots $ , $ (B_i)_{M_i} $ ( $ 1 \le A_i \le N $ ; $ A_i \ne i $ ; $ 1 \le M_i \le 10\,000 $ ; $ 0 \le (B_i)_1 < (B_i)_2 < \dots < (B_i)_{M_i} \le 10^9 $ ) representing the bidirectional road that city $ i $ likes to construct. It is guaranteed that the sum of $ M_i $ does not exceed $ 10\,000 $ . It is also guaranteed that no two cities like to connect with each other and any pair of cities are connected by a sequence of road proposals. The next line contains $ K $ integers: $ C_i $ ( $ 0 \le C_i \le 10^9 $ ) representing the material that is familiarized by the workers.
输出格式
If it is not possible to assign each worker to construct a road such that any pair of cities are connected by a sequence of constructed road, simply output -1 in a line. Otherwise, for each worker in the same order as input, output in a line two integers (separated by a single space): $ u $ and $ v $ in any order. This means that the worker constructs a direct bidirectional road connecting city $ u $ and $ v $ . If the worker does not construct any road, output "0 0" (without quotes) instead. Each pair of cities can only be assigned to at most one worker. You may output any assignment as long as any pair of cities are connected by a sequence of constructed road.
输入输出样例
输入样例 #1
4 5
2 2 1 2
3 2 2 3
4 2 3 4
2 2 4 5
1 2 3 4 5
输出样例 #1
1 2
2 3
3 4
0 0
4 2
输入样例 #2
4 5
2 2 10 20
3 2 2 3
4 2 3 4
2 2 4 5
1 2 3 4 5
输出样例 #2
-1