A10861 | Dasha and Puzzle
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Dasha decided to have a rest after solving the problem. She had been ready to start her favourite activity — origami, but remembered the puzzle that she could not solve.
The tree is a non-oriented connected graph without cycles. In particular, there always are $n-1$ edges in a tree with $n$ vertices.
The puzzle is to position the vertices at the points of the Cartesian plane with integral coordinates, so that the segments between the vertices connected by edges are parallel to the coordinate axes. Also, the intersection of segments is allowed only at their ends. Distinct vertices should be placed at different points.
Help Dasha to find any suitable way to position the tree vertices on the plane.
It is guaranteed that if it is possible to position the tree vertices on the plane without violating the condition which is given above, then you can do it by using points with integral coordinates which don't exceed $10^{18}$ in absolute value.
The tree is a non-oriented connected graph without cycles. In particular, there always are $n-1$ edges in a tree with $n$ vertices.
The puzzle is to position the vertices at the points of the Cartesian plane with integral coordinates, so that the segments between the vertices connected by edges are parallel to the coordinate axes. Also, the intersection of segments is allowed only at their ends. Distinct vertices should be placed at different points.
Help Dasha to find any suitable way to position the tree vertices on the plane.
It is guaranteed that if it is possible to position the tree vertices on the plane without violating the condition which is given above, then you can do it by using points with integral coordinates which don't exceed $10^{18}$ in absolute value.
输入格式
The first line contains single integer $n$ $(1<=n<=30)$ — the number of vertices in the tree.
Each of next $n-1$ lines contains two integers $u_{i}$ , $v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) that mean that the $i$ -th edge of the tree connects vertices $u_{i}$ and $v_{i}$ .
It is guaranteed that the described graph is a tree.
Each of next $n-1$ lines contains two integers $u_{i}$ , $v_{i}$ ( $1<=u_{i},v_{i}<=n$ ) that mean that the $i$ -th edge of the tree connects vertices $u_{i}$ and $v_{i}$ .
It is guaranteed that the described graph is a tree.
输出格式
If the puzzle doesn't have a solution then in the only line print "NO".
Otherwise, the first line should contain "YES". The next $n$ lines should contain the pair of integers $x_{i}$ , $y_{i}$ $(|x_{i}|,|y_{i}|<=10^{18})$ — the coordinates of the point which corresponds to the $i$ -th vertex of the tree.
If there are several solutions, print any of them.
Otherwise, the first line should contain "YES". The next $n$ lines should contain the pair of integers $x_{i}$ , $y_{i}$ $(|x_{i}|,|y_{i}|<=10^{18})$ — the coordinates of the point which corresponds to the $i$ -th vertex of the tree.
If there are several solutions, print any of them.
输入输出样例
输入 #1
7 1 2 1 3 2 4 2 5 3 6 3 7
输出 #1
YES 0 0 1 0 0 1 2 0 1 -1 -1 1 0 2
输入 #2
6 1 2 2 3 2 4 2 5 2 6
输出 #2
NO
输入 #3
4 1 2 2 3 3 4
输出 #3
YES 3 3 4 3 5 3 6 3
In the first sample one of the possible positions of tree is: 
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted