CF1670E.Hemose on the Tree
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
After the last regional contest, Hemose and his teammates finally qualified to the ICPC World Finals, so for this great achievement and his love of trees, he gave you this problem as the name of his team "Hemose 3al shagra" (Hemose on the tree).
You are given a tree of n vertices where n is a power of 2 . You have to give each node and edge an integer value in the range [1,2n−1] (inclusive), where all the values are distinct.
After giving each node and edge a value, you should select some root for the tree such that the maximum cost of any simple path starting from the root and ending at any node or edge is minimized.
The cost of the path between two nodes u and v or any node u and edge e is defined as the bitwise XOR of all the node's and edge's values between them, including the endpoints (note that in a tree there is only one simple path between two nodes or between a node and an edge).
输入格式
The first line contains a single integer t ( 1≤t≤5⋅104 ) — the number of test cases. Then t test cases follow.
The first line of each test case contains a single integer p ( 1≤p≤17 ), where n (the number of vertices in the tree) is equal to 2p .
Each of the next n−1 lines contains two integers u and v ( 1≤u,v≤n ) meaning that there is an edge between the vertices u and v in the tree.
It is guaranteed that the given graph is a tree.
It is guaranteed that the sum of n over all test cases doesn't exceed 3⋅105 .
输出格式
For each test case on the first line print the chosen root.
On the second line, print n integers separated by spaces, where the i -th integer represents the chosen value for the i -th node.
On the third line, print n−1 integers separated by spaces, where the i -th integer represents the chosen value for the i -th edge. The edges are numerated in the order of their appearance in the input data.
If there are multiple solutions, you may output any.
输入输出样例
输入#1
2 2 1 2 2 3 3 4 3 1 2 2 3 3 4 1 5 1 6 5 7 5 8
输出#1
3 5 1 3 6 4 2 7 5 1 2 8 11 4 13 9 15 6 14 3 7 10 5 12
说明/提示
The tree in the first test case with the weights of all nodes and edges is shown in the picture.
The costs of all paths are:
- 3 ;
- 3⊕7=4 ;
- 3⊕7⊕6=2 ;
- 3⊕2=1 ;
- 3⊕2⊕1=0 ;
- 3⊕2⊕1⊕4=4 ;
- 3⊕2⊕1⊕4⊕5=1 .
The maximum cost of all these paths is 4 . We can show that it is impossible to assign the values and choose the root differently to achieve a smaller maximum cost of all paths.
The tree in the second test case: