• POJ 1330 Nearest Common Ancestors 【LCA模板题】


    任意门:http://poj.org/problem?id=1330

    Nearest Common Ancestors

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 34942   Accepted: 17695

    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
    

    题意概括:

    给一棵有N个节点,N-1条边的树 和 一对结点,求这对结点的最近公共祖先。

    解题思路:

    找根结点用一个标记数组

    找公共祖先用简单粗暴的 Tarjan。

    AC code:

     1 #include <cstdio>
     2 #include <iostream>
     3 #include <algorithm>
     4 #include <cstring>
     5 #include <vector>
     6 #define INF 0x3f3f3f3f
     7 #define LL long long
     8 using namespace std;
     9 const int MAXN = 1e4+5;
    10 struct Edge{int v, next;}edge[MAXN<<1];
    11 int head[MAXN], cnt;
    12 int fa[MAXN];
    13 bool in[MAXN];
    14 bool vis[MAXN];
    15 int N, M, S, ans, a, b;
    16 
    17 inline void init()
    18 {
    19     memset(head, -1, sizeof(head));
    20     memset(vis, false, sizeof(vis));
    21     memset(in, false, sizeof(in));
    22     cnt = 0;
    23 }
    24 
    25 inline void AddEdge(int from, int to)
    26 {
    27     edge[cnt].v = to;
    28     edge[cnt].next = head[from];
    29     head[from] = cnt++;
    30 }
    31 
    32 int findset(int x)
    33 {
    34     int root = x;
    35     while(fa[root] != root) root = fa[root];
    36 
    37     int tmp;
    38     while(fa[x] != root){
    39         tmp = fa[x];
    40         fa[x] = root;
    41         x = tmp;
    42     }
    43     return root;
    44 }
    45 
    46 void Tarjan(int s)
    47 {
    48     fa[s] = s;
    49     for(int i = head[s]; i != -1; i = edge[i].next){
    50         int Eiv = edge[i].v;
    51         Tarjan(Eiv);
    52         fa[findset(Eiv)] = s;
    53     }
    54     vis[s] = true;
    55     if(s == a){
    56         if(vis[a] && vis[b]) ans = findset(b);
    57     }
    58     else if(s == b){
    59         if(vis[a] && vis[b]) ans = findset(a);
    60     }
    61 }
    62 
    63 int main()
    64 {
    65     int T_case, u, v;
    66     scanf("%d", &T_case);
    67     while(T_case--)
    68     {
    69         init();
    70         scanf("%d", &N);
    71         M = N-1;
    72         for(int i = 1; i <= M; i++){
    73             scanf("%d %d", &u, &v);
    74             AddEdge(u, v);
    75             in[v] = true;
    76             //AddEdge(v, u);
    77         }
    78         scanf("%d %d", &a, &b);
    79         int root = 0;
    80         for(int i = 1; i <= N; i++){
    81             if(!in[i]){root = i;break;}
    82         }
    83         Tarjan(root);
    84         printf("%d
    ", ans);
    85     }
    86     return 0;
    87 }
    View Code
  • 相关阅读:
    matlab函数集锦
    视觉(1)[导入]EStereo
    我为啥申请这里的博客?
    [导入]给定一个英文原文,统计文件里面一共有多少个不同的英文单词
    视觉(2)[导入]opengl贴图程序
    C++ Builder 控件的卸载<转载>
    [转]<不知道能否解决先转下来再说>不显示删除回复显示所有回复显示星级回复显示得分回复 没有找到MSVR90D.dll因此这个应用程序未能启动
    终于把《windows程序设计》上册读完了,hoho
    乱思。。。。。。。、、、、、
    测试windows live writer
  • 原文地址:https://www.cnblogs.com/ymzjj/p/9744229.html
Copyright © 2020-2023  润新知