Codeforces Round #394 (Div. 2) E. Dasha and Puzzle —— 构造 + 贪心

来源:互联网 发布:软件项目管理总结报告 编辑:程序博客网 时间:2024/05/22 08:26

题目链接:http://codeforces.com/contest/761/problem/E


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
71 21 32 42 53 63 7
output
YES0 01 00 12 01 -1-1 10 2
input
61 22 32 42 52 6
output
NO
input
41 22 33 4
output
YES3 34 35 36 3
Note

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






代码如下:

#include<bits/stdc++.h>using namespace std;typedef long long LL;const int INF = 2e9;const LL LNF = 9e18;const int mod = 1e9+7;const int maxn = 30+10;int n, B = 1;vector<int>g[maxn];LL x[maxn], y[maxn], vis[maxn],d[maxn][5];void dfs(int u, LL xx, LL yy, LL t){    x[u] = xx;    y[u] = yy;    vis[u] = 1;    for(int i = 0; i<g[u].size(); i++)    {        int v = g[u][i];        if(vis[v]) continue;        if(d[u][1]==0)        {            d[u][1] = d[v][2] = 1;            dfs(v, xx+(1<<t), yy, t-1);        }        else if(d[u][2]==0)        {            d[u][2] = d[v][1] = 1;            dfs(v,xx-(1<<t), yy, t-1);        }        else if(d[u][3]==0)        {            d[u][3] = d[v][4] = 1;            dfs(v,xx, yy+(1<<t), t-1);        }        else        {            d[u][4] = d[v][3] = 1;            dfs(v,xx,yy-(1<<t), t-1);        }    }}int main(){    cin>>n;    for(int i = 1; i<n; i++)    {        int u, v;        cin>>u>>v;        g[u].push_back(v);        g[v].push_back(u);        if(g[u].size()>4 || g[v].size()>4)            B = 0;    }    dfs(1,0,0,30);    if(!B)    {        puts("NO");        return 0;    }    puts("YES");    for(int i = 1; i<=n; i++)        cout<<x[i]<<' '<<y[i]<<endl;}


阅读全文
0 0