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

题目链接: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
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:






代码如下:

#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
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值