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;
    }
  • 相关阅读:
    网页定位导航特效
    学习笔记(一) HTML+CSS基础课程
    《javascript dom编程艺术》笔记(二)——美术馆示例
    《javascript dom编程艺术》笔记(一)——优雅降级、向后兼容、多个函数绑定onload函数
    javascript之事件处理
    将Emmet安装到到 Sublime text 3?
    如何将Emmet安装到到 Sublime text 3?
    Web前端研发工程师编程能力飞升之路
    childNodes 节点数量问题说明
    gerrit + ldap + phpldapadmin docker部署
  • 原文地址:https://www.cnblogs.com/jasonlixuetao/p/6371221.html
Copyright © 2011-2022 走看看