【POJ 1330】Nearest Common Ancestors(LCA_trajan)

来源:互联网 发布:java object 锁 编辑:程序博客网 时间:2024/06/05 10:58

问题描述
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.
输入
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.
输出
Print exactly one line for each test case. The line should contain the integer that is the nearest common ancestor.
样例输入
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
样例输出
4
3
算法讨论
最近公共祖先,可用trajan算法离线处理。trajan算法主要结合了dfs和并查集来实现,先建立一个x集合,祖先为x,然后遍历这棵树的所有子树,并加入集合x,所有祖先都设为x。所有子树处理完毕之后,处理当前根节点x相关的查询。遍历x的所有查询,如果查询的另一个节点v已经访问过了,那么x和v的LCA即为v所在集合的祖先。

#include<cstdio>#include<cstring>using namespace std;struct{    int x,y,n;}g[10005];int f[10005],ls[10005];bool v[10005];int n,root,s,l,t;int init(){    scanf("%d",&n);    for (int i=1;i<n;i++)    {        scanf("%d%d",&g[i].x,&g[i].y);        g[i].n=ls[g[i].x];        ls[g[i].x]=i;        v[g[i].y]=1;    }    scanf("%d%d",&s,&l);    for (int i=1;i<=n;i++)        if (v[i]==0)        {            root=i;            return 0;        }}int find(int x){    if (f[x]==x)        return x;    f[x]=find(f[x]);    return f[x];}int dfs(int x){    int t=0;    v[x]=1;    if (x==s && v[l] || x==l && v[s])        if (x==s)            printf("%d\n",find(l));        else            printf("%d\n",find(s));    t=ls[x];    while (t>0)    {        dfs(g[t].y);        f[find(g[t].y)]=g[t].x;        t=g[t].n;    }    return 0;}int trajan(){    for (int i=1;i<=n;i++)        f[i]=i;    memset(v,0,sizeof(v));    dfs(root);    return 0;}int main(){    scanf("%d",&t);    for (int i=1;i<=t;i++)    {        memset(v,0,sizeof(v));        memset(f,0,sizeof(f));        memset(ls,0,sizeof(ls));        init();        trajan();    }}

这里写图片描述
Pixiv ID:51208494

原创粉丝点击