zoukankan      html  css  js  c++  java
  • A. Nearest Common Ancestors

    A. Nearest Common Ancestors

    1000ms
    1000ms
    10000KB
     
    64-bit integer IO format: %lld      Java class name: Main
     
     
    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

    解题:本来打算用dfs+RMQ写的,结果写得一塌糊涂,完全不对。后来发现只有一个询问,即为了这一次询问可以破坏原有结构。直接暴力好了。

     1 #include <iostream>
     2 #include <cstdio>
     3 using namespace std;
     4 bool vis[10005];
     5 int uf[10005];
     6 int main() {
     7     int ks,n,i,x,y;
     8     scanf("%d",&ks);
     9     while(ks--) {
    10         scanf("%d",&n);
    11         for(i = 0; i <= n; i++) {
    12             vis[i] = false;
    13             uf[i] = i;
    14         }
    15         for(i = 1; i < n; i++) {
    16             scanf("%d %d",&x,&y);
    17             uf[y] = x;
    18         }
    19         scanf("%d %d",&x,&y);
    20         vis[x] = true;
    21         x = uf[x];
    22         while(x != uf[x]) {
    23             vis[x] = true;
    24             x = uf[x];
    25         }
    26         while(y != uf[y]) {
    27             if(vis[y]) break;
    28             y = uf[y];
    29         }
    30         printf("%d
    ",y);
    31     }
    32     return 0;
    33 }
    View Code

    倍增法求LCA

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <climits>
     7 #include <vector>
     8 #include <queue>
     9 #include <cstdlib>
    10 #include <string>
    11 #include <set>
    12 #include <stack>
    13 #define LL long long
    14 #define pii pair<int,int>
    15 #define INF 0x3f3f3f3f
    16 using namespace std;
    17 const int maxn = 10010;
    18 int n,deep[maxn],fa[maxn][32];
    19 vector<int>g[maxn];
    20 void dfs(int u,int f){
    21     for(int i = 0; i < g[u].size(); i++){
    22         if(g[u][i] == f) continue;
    23         deep[g[u][i]] = deep[u]+1;
    24         dfs(g[u][i],u);
    25     }
    26 }
    27 void init(){
    28     for(int j = 1; j < 32; j++){
    29         for(int i = 1; i <= n; i++)
    30             fa[i][j] = fa[fa[i][j-1]][j-1];
    31     }
    32 }
    33 int LCA(int u,int v){
    34     if(deep[u] < deep[v]) swap(u,v);
    35     int i,d = deep[u]-deep[v];
    36     for(i = 0; i < 32; i++) if((1<<i)&d) u = fa[u][i];
    37     if(u == v) return u;
    38     for(i = 31; i >= 0; i--){
    39         if(fa[u][i] != fa[v][i]){
    40             u = fa[u][i];
    41             v = fa[v][i];
    42         }
    43     }
    44     return fa[u][0];
    45 }
    46 int main() {
    47     int t,i,u,v,root;
    48     scanf("%d",&t);
    49     while(t--){
    50         scanf("%d",&n);
    51         for(i = 0; i <= n; i++){
    52             g[i].clear();
    53             deep[i] = 0;
    54         }
    55         memset(fa,0,sizeof(fa));
    56         for(i = 1; i < n; i++){
    57             scanf("%d %d",&u,&v);
    58             g[u].push_back(v);
    59             g[v].push_back(u);
    60             fa[v][0] = u;
    61             if(!fa[u][0]) root = u;
    62         }
    63         deep[root] = 1;
    64         dfs(root,-1);
    65         init();
    66         scanf("%d %d",&u,&v);
    67         printf("%d
    ",LCA(u,v));
    68     }
    69     return 0;
    70 }
    View Code

    tarjan求LCA

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <climits>
     7 #include <vector>
     8 #include <queue>
     9 #include <cstdlib>
    10 #include <string>
    11 #include <set>
    12 #define LL long long
    13 #define INF 0x3f3f3f3f
    14 using namespace std;
    15 const int maxn = 10010;
    16 vector<int>g[maxn];
    17 int n,x,y,uf[maxn],ans;
    18 bool vis[maxn];
    19 int Find(int rt) {
    20     if(rt != uf[rt])
    21         uf[rt] = Find(uf[rt]);
    22     return uf[rt];
    23 }
    24 bool dfs(int u) {
    25     uf[u] = u;
    26     for(int i = 0; i < g[u].size(); i++) {
    27         if(!vis[g[u][i]]) {
    28             if(dfs(g[u][i])) return true;
    29             uf[g[u][i]] = u;
    30         }
    31     }
    32     if(u == x && vis[y]) {
    33         ans = Find(y);
    34         return true;
    35     } else if(u == y && vis[x]) {
    36         ans = Find(x);
    37         return true;
    38     }
    39     vis[u] = true;
    40     return false;
    41 }
    42 int main() {
    43     int t,i,u,v,root;
    44     scanf("%d",&t);
    45     while(t--) {
    46         scanf("%d",&n);
    47         for(i = 0; i <= n; i++) {
    48             g[i].clear();
    49             vis[i] = false;
    50         }
    51         for(i = 1; i < n; i++) {
    52             scanf("%d %d",&u,&v);
    53             g[u].push_back(v);
    54             vis[v] = true;
    55         }
    56         for(i = 1; i <= n; i++)
    57             if(!vis[i]) {
    58                 root = i;
    59                 break;
    60             }
    61         scanf("%d%d",&x,&y);
    62         memset(vis,false,sizeof(vis));
    63         dfs(root);
    64         cout<<ans<<endl;
    65     }
    66     return 0;
    67 }
    View Code
  • 相关阅读:
    RWCString 定义 memeroy leak
    打开eclipse报错
    Eclipse 增加php插件
    Shell 字符串的截取
    【转载】Shell判断字符串包含关系的几种方法
    Shell $? $* $@ 等含义
    Shell 获取指定行的内容
    概念性进程
    网络编程
    模块详解
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/3842829.html
Copyright © 2011-2022 走看看