E. Dasha and Puzzle
time limit per test:2 seconds
memory limit per test:256 megabytes
input:standard input
output:standard output

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 uivi (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 xiyi (|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:

题意:

给你一棵树,让你在二维平面上摆出来,边必须平行坐标轴,且边没有交集

思路:

如果存在某点度数大于4肯定不行。

然后,第一层让边长为len,第二层边长为len/2,第三层边长为len/4……

这样弄下去就好了,这样就保证每一层都不会碰到上一层了。即缩小距离的方法。。(摘)

#include <iostream>
#include<cstdio>
#include<cstring>
#include<vector>
using namespace std;
int dr[][]={{,},{,},{,-},{-,}};
struct node
{
int x,y;
}ans[];
bool vis[];
int n;
vector<int> mp[];
void dfs(int u,int x,int y,int len,int predr)
{
vis[u]=;
ans[u].x=x;
ans[u].y=y;
int j=;
for(int i=;i<mp[u].size();i++)
{
if (vis[mp[u][i]]) continue;
if (predr+j==) j++; //因为特意把坐标的位置排过,使之符合运算
dfs(mp[u][i],x+dr[j][]*len,y+dr[j][]*len,len/,j);
j++;
}
return;
}
int main()
{
scanf("%d",&n);
for(int i=;i<n;i++)
{
int x,y;
scanf("%d%d",&x,&y);
mp[x].push_back(y);
mp[y].push_back(x);
}
bool flag=;
for(int i=;i<=n;i++) if (mp[i].size()>){flag=; break;}
if (!flag) printf("NO\n");
else
{
printf("YES\n");
memset(vis,,sizeof(vis));
dfs(,,,<<,-);
for(int i=;i<=n;i++)
printf("%d %d\n",ans[i].x,ans[i].y);
}
return ;
}

最新文章

  1. java的poi技术读,写Excel[2003-2007,2010]
  2. Go-Agent部署与FQ教程(2016-10-28)
  3. MySQL中concat函数(连接字符串)
  4. 代理传值Delegate
  5. 用Application和Session统计在线人数[转]
  6. php并发请求
  7. 微信公众平台开发接口PHP SDK完整版
  8. sql语句语法大全
  9. 【MySQL】Sysbench性能测试
  10. Android LinearLayout中weight属性的意义与使用方式
  11. Linux popen/pclose
  12. linux安装chrome
  13. Docker(二):Dockerfile 使用介绍
  14. 【c# 数据库】 多表链接
  15. Windows Server 2016-Active Directory域服务端口汇总
  16. 数据库的未来:ORM+LINQ+RX
  17. &lt;jsp:param&gt;标签给属性赋值时的一个坑
  18. nginx unit 的使用
  19. 【转】Map 与 Unordered_map
  20. MySQL基础值 存储过程和函数

热门文章

  1. &amp;lt;context-param&amp;gt;与&amp;lt;init-param&amp;gt;的差别与作用
  2. 六顶思维帽的思考,敏捷开发?——By Me
  3. tf.clip_by_value:将tensor中的0和NONE进行范围限制的函数
  4. PScc
  5. nginx规则总结
  6. JavaScript:关闭当前页面(微信、电脑)
  7. mybatis参数处理 $#
  8. HDFS 详解
  9. Wireshark(一):Wireshark基本用法
  10. Ubuntu系统Anaconda下载安装与切换源教程【转】