A13102 | Tests for problem D
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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:
1. 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;
2. all segments are non-degenerate;
3. for each pair $(i, j)$ such that $i \ne j$ , $i \in [1, n]$ and $j \in [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?
Given an undirected labeled tree consisting of $n$ vertices, find a set of segments such that:
1. 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;
2. all segments are non-degenerate;
3. for each pair $(i, j)$ such that $i \ne j$ , $i \in [1, n]$ and $j \in [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 \le n \le 5 \cdot 10^5$ ) — the number of vertices in the tree.
Then $n - 1$ lines follow, each containing two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n$ , $x_i \ne y_i$ ) denoting the endpoints of the $i$ -th edge.
It is guaranteed that the given graph is a tree.
Then $n - 1$ lines follow, each containing two integers $x_i$ and $y_i$ ( $1 \le x_i, y_i \le n$ , $x_i \ne y_i$ ) 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 $l_i$ and $r_i$ ( $1 \le l_i < r_i \le 2n$ ) — the endpoints of the $i$ -th segment. All $2n$ integers you print should be unique.
It is guaranteed that the answer always exists.
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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted