zoukankan      html  css  js  c++  java
  • POJ

    POJ - 1330
    Time Limit: 1000MS   Memory Limit: 10000KB   64bit IO Format: %lld & %llu

     Status

    Description

    A rooted tree is a well-known data structure in computer science and engineering. An example is shown below: 

     
    In the figure, each node is labeled with an integer from {1, 2,...,16}. Node 8 is the root of the tree. Node x is an ancestor of node y if node x is in the path between the root and node y. For example, node 4 is an ancestor of node 16. Node 10 is also an ancestor of node 16. As a matter of fact, nodes 8, 4, 10, and 16 are the ancestors of node 16. Remember that a node is an ancestor of itself. Nodes 8, 4, 6, and 7 are the ancestors of node 7. A node x is called a common ancestor of two different nodes y and z if node x is an ancestor of node y and an ancestor of node z. Thus, nodes 8 and 4 are the common ancestors of nodes 16 and 7. A node x is called the nearest common ancestor of nodes y and z if x is a common ancestor of y and z and nearest to y and z among their common ancestors. Hence, the nearest common ancestor of nodes 16 and 7 is node 4. Node 4 is nearer to nodes 16 and 7 than node 8 is. 

    For other examples, the nearest common ancestor of nodes 2 and 3 is node 10, the nearest common ancestor of nodes 6 and 13 is node 8, and the nearest common ancestor of nodes 4 and 12 is node 4. In the last example, if y is an ancestor of z, then the nearest common ancestor of y and z is y. 

    Write a program that finds the nearest common ancestor of two distinct nodes in a tree. 

    Input

    The input consists of T test cases. The number of test cases (T) is given in the first line of the input file. Each test case starts with a line containing an integer N , the number of nodes in a tree, 2<=N<=10,000. The nodes are labeled with integers 1, 2,..., N. Each of the next N -1 lines contains a pair of integers that represent an edge --the first integer is the parent node of the second integer. Note that a tree with N nodes has exactly N - 1 edges. The last line of each test case contains two distinct integers whose nearest common ancestor is to be computed.

    Output

    Print exactly one line for each test case. The line should contain the integer that is the nearest common ancestor.

    Sample Input

    2
    16
    1 14
    8 5
    10 16
    5 9
    4 6
    8 4
    4 10
    1 13
    6 15
    10 11
    6 7
    10 2
    16 3
    8 1
    16 12
    16 7
    5
    2 3
    3 4
    3 1
    1 5
    3 5
    

    Sample Output

    4
    3
    
    

    Source

    这是一道裸LCA,给你一个有根树,再给你两个点判断其最近公共祖先,可以用tarjan解决

    #include <iostream>
    #include <cstdio>
    #include <vector>
    #include <cstring>
    #define X first
    #define Y second
    using namespace std;
    typedef pair<int,int> pii;
    const int maxn=10010;
    int f[maxn],n,LCA[maxn],in[maxn],vis[maxn],R;
    vector<int> V[maxn];
    pii P;
    void init()
    {
        for (int i=0; i<=n; i++)
            V[i].clear(),f[i]=i;
        memset(LCA,0,sizeof(LCA));
        memset(vis,0,sizeof(vis));
        memset(in,0,sizeof(in));
    }
    int find(int x)
    {
        return f[x]==x?x:f[x]=find(f[x]);
    }
    int mix(int x,int y)
    {
        int fx=find(x),fy=find(y);
        if (fx==fy) return 0;
        f[fx]=fy;
        return 1;
    }
    void Tarjan(int root)
    {
        vis[root]=1;
        if (P.X==root&&vis[P.Y])
        {
            LCA[R]=find(P.Y);
            return ;//因为只有一条边,找到直接return
        }
        if (P.Y==root&&vis[P.X])
        {
            LCA[R]=find(P.X);
            return ;
        }
        for (int i=0; i<V[root].size(); i++)
        {
            if (!vis[V[root][i]]);
            Tarjan(V[root][i]);
            f[V[root][i]]=root;
        }
    }
    int main()
    {
        int T;
        scanf("%d",&T);
        while (T--)
        {
            int a,b;
            scanf("%d",&n);
            init();
            for (int i=1; i<n; i++)
            {
                scanf("%d%d",&a,&b);
                if (a!=b)
                {
                    in[b]++;//in记录入度
                    V[a].push_back(b);
                }
            }
            scanf("%d%d",&a,&b);
            P.X=a,P.Y=b;
            for (int i=1;i<=n;i++)
            if (in[i]==0)//根节点的入度为0
            {
                R=i;//R为根节点
                Tarjan(i);
                printf("%d
    ",LCA[R]);
                break;
            }
        }
        return 0;
    }
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • 相关阅读:
    SQL字符串操作汇总
    重构之道清除代码异味
    Html.Action和Html.RederAction来创建子视图
    C#实现Thrift连接池[新]
    CentOS下配置Apache反向代理出错的解决
    entity framework实体用数据库默认值的方法
    为IEnumerable类型添加Add方法
    一个对Entity Framework数据层的封装
    将.netFramework4.5/MVC4/EF5/Oracle网站发布到Server2008/iis7的痛苦经历
    让vs2012运行vs2010插件的方法
  • 原文地址:https://www.cnblogs.com/scaugsh/p/5728824.html
Copyright © 2011-2022 走看看