Codeforces_761_E_(dfs)
阅读原文时间:2023年07月13日阅读:1

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

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 x__iy__i(|x__i|, |y__i| ≤ 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
#include
#include
#include

using namespace std;
#define LL long long

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

};

vector eage[];
int dir[][]= {-,,,,,,,-};

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

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

int main()
{

scanf("%d",&n);  
for(int i=; i<n-; 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=;i<=n;i++)  
     if(deg\[i\]>)  
    {  
        printf("NO\\n");  
        return ;  
    }  
vis\[\]=;  
dfs(,-);  
printf("YES\\n");  
for(int i=; i<=n; i++)  
    //cout<<coor\[i\].x<<" "<<coor\[i\].y<<endl;  
    printf("%I64d %I64d\\n",coor\[i\].x,coor\[i\].y);  
return ;  

}

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器