CF1278E.Tests for problem D
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
We had a really tough time generating tests for problem D. In order to prepare strong tests, we had to solve the following problem.
Given an undirected labeled tree consisting of n vertices, find a set of segments such that:
- both endpoints of each segment are integers from 1 to 2n , and each integer from 1 to 2n should appear as an endpoint of exactly one segment;
- all segments are non-degenerate;
- for each pair (i,j) such that i=j , i∈[1,n] and j∈[1,n] , the vertices i and j are connected with an edge if and only if the segments i and j intersect, but neither segment i is fully contained in segment j , nor segment j is fully contained in segment i .
Can you solve this problem too?
输入格式
The first line contains one integer n ( 1≤n≤5⋅105 ) — the number of vertices in the tree.
Then n−1 lines follow, each containing two integers xi and yi ( 1≤xi,yi≤n , xi=yi ) denoting the endpoints of the i -th edge.
It is guaranteed that the given graph is a tree.
输出格式
Print n pairs of integers, the i -th pair should contain two integers li and ri ( 1≤li<ri≤2n ) — the endpoints of the i -th segment. All 2n integers you print should be unique.
It is guaranteed that the answer always exists.
输入输出样例
输入#1
6 1 2 1 3 3 4 3 5 2 6
输出#1
9 12 7 10 3 11 1 5 2 4 6 8
输入#2
1
输出#2
1 2