E. Dasha and Puzzle(dfs+思维脑洞)

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 1018 in absolute value.

Input

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 ui, vi (1 ≤ ui, vi ≤ n) that mean that the i-th edge of the tree connects vertices ui and vi.

It is guaranteed that the described graph is a tree.

Output

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 xi, yi(|xi|, |yi| ≤ 1018) — the coordinates of the point which corresponds to the i-th vertex of the tree.

If there are several solutions, print any of them.

Examples
Input
7
1 2
1 3
2 4
2 5
3 6
3 7
Output
YES
0 0
1 0
0 1
2 0
1 -1
-1 1
0 2
Input
6
1 2
2 3
2 4
2 5
2 6
Output
NO
Input
4
1 2
2 3
3 4
Output
YES
3 3
4 3
5 3
6 3
Note

In the first sample one of the possible positions of tree is:

 

题意: 就是给你N-1条边,让你在这个完全的坐标轴上,看看是否形成一个树,每一个点都必须在不同的位置,这些边只能在结尾的位置相交。这些边必须和坐标走平行。

思路:我们现在思考一下,这些边什么时候不符合情况,就是有有一个顶点,与他相连的节点数大于4,这个时候是肯定不可以的,是不是剩下的情况就是可以的啊,答案是肯定的,你们你们不懂的可以在纸上画一画,我们只要先选择一个1为根的话,然后dfs下去,我们每次选一个顶点,然后每次选的距离都是2^n这样的话我们肯定是不会有相交的边的的情况的了。所以我们 现在要做的就是判断一下不符合情况的,然后再计算就可以了,其实就是一个dfs,我们只要选择第一个点为起点就可以了,时间复杂度,好像就是O(n);  我们每次都让距离减半这样子的话就没有相交的点了,感觉不是那么的难这种问题以后在纸上画画就行了。

 

 

 

转载于:https://www.cnblogs.com/Heilce/p/6428791.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值