Codeforces_761_E_(dfs)

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 nvertices.

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:

 

思路:边的长度取2的幂,由大减小,每次除以2(不能从1开始每次乘2,在这儿卡了好久,其实仔细一想,很容易想到如果从小到大会出现交叉)。然后就是简单dfs。

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<vector>

using namespace std;
#define LL long long

struct Node
{
    LL x, y;
    Node() {}
    Node(LL a,LL b)
    {
        x=a;
        y=b;
    }

};

vector<int> eage[35];
int dir[4][2]= {-1,0,0,1,1,0,0,-1};

int deg[35];
int vis[35];
int n;
LL len=2;
Node coor[35];

void dfs(int p,int d)
{
    int di=0;
    for(int i=0; i<eage[p].size(); i++)
    {
        if(vis[eage[p][i]]==0)
        {
            if(di==d)
                di=(di+1)%4;
            vis[eage[p][i]]=1;
            coor[eage[p][i]].x=coor[p].x+dir[di][0]*len;
            coor[eage[p][i]].y=coor[p].y+dir[di][1]*len;
            len=len*2;
            //cout<<eage[p][i]<<' '<<coor[eage[p][i]].x<<' '<<coor[eage[p][i]].y<<endl;
            dfs(eage[p][i],(di+2)%4);
            di=(di+1)%4;
        }
    }
}

int main()
{

    scanf("%d",&n);
    for(int i=0; i<n-1; i++)
    {
        int a,b;
        scanf("%d%d",&a,&b);
        eage[a].push_back(b);
        eage[b].push_back(a);
        deg[a]++;
        deg[b]++;

    }
    for(int i=1;i<=n;i++)
         if(deg[i]>4)
        {
            printf("NO\n");
            return 0;
        }
    vis[1]=1;
    dfs(1,-10);
    printf("YES\n");
    for(int i=1; i<=n; i++)
        //cout<<coor[i].x<<" "<<coor[i].y<<endl;
        printf("%I64d %I64d\n",coor[i].x,coor[i].y);
    return 0;
}

 

 

转载于:https://www.cnblogs.com/jasonlixuetao/p/6371221.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值