zoukankan      html  css  js  c++  java
  • 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
    ");
                return 0;
            }
        vis[1]=1;
        dfs(1,-10);
        printf("YES
    ");
        for(int i=1; i<=n; i++)
            //cout<<coor[i].x<<" "<<coor[i].y<<endl;
            printf("%I64d %I64d
    ",coor[i].x,coor[i].y);
        return 0;
    }
  • 相关阅读:
    SPUtility.SendEmail发送抄送和密送邮件
    sharepoint2010的定时器开发配置文件
    通过代码获取sharepoint2010的“我喜欢(I like it)”、“标签(Tags and Notes)”、“记事本”以及“文档等级”活动内容
    Office web application与RMS的冲突
    java十年十大组织 (转)
    2007年上半年参加Oracle活动总结
    Hibernate_Gossip学习笔记
    java十年十大人物 (转)
    2007年5月BEA成都活动总结
    java十年十大事件 (转)
  • 原文地址:https://www.cnblogs.com/jasonlixuetao/p/6371221.html
Copyright © 2011-2022 走看看