任意门: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:

 #include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <vector>
#define INF 0x3f3f3f3f
#define LL long long
using namespace std;
const int MAXN = 1e4+;
struct Edge{int v, next;}edge[MAXN<<];
int head[MAXN], cnt;
int fa[MAXN];
bool in[MAXN];
bool vis[MAXN];
int N, M, S, ans, a, b; inline void init()
{
memset(head, -, sizeof(head));
memset(vis, false, sizeof(vis));
memset(in, false, sizeof(in));
cnt = ;
} inline void AddEdge(int from, int to)
{
edge[cnt].v = to;
edge[cnt].next = head[from];
head[from] = cnt++;
} int findset(int x)
{
int root = x;
while(fa[root] != root) root = fa[root]; int tmp;
while(fa[x] != root){
tmp = fa[x];
fa[x] = root;
x = tmp;
}
return root;
} void Tarjan(int s)
{
fa[s] = s;
for(int i = head[s]; i != -; i = edge[i].next){
int Eiv = edge[i].v;
Tarjan(Eiv);
fa[findset(Eiv)] = s;
}
vis[s] = true;
if(s == a){
if(vis[a] && vis[b]) ans = findset(b);
}
else if(s == b){
if(vis[a] && vis[b]) ans = findset(a);
}
} int main()
{
int T_case, u, v;
scanf("%d", &T_case);
while(T_case--)
{
init();
scanf("%d", &N);
M = N-;
for(int i = ; i <= M; i++){
scanf("%d %d", &u, &v);
AddEdge(u, v);
in[v] = true;
//AddEdge(v, u);
}
scanf("%d %d", &a, &b);
int root = ;
for(int i = ; i <= N; i++){
if(!in[i]){root = i;break;}
}
Tarjan(root);
printf("%d\n", ans);
}
return ;
}

最新文章

  1. C#——this关键字(1)
  2. Razor语法
  3. 任我行 CRM 9.4
  4. Shiro 缓存失效以后的一个问题
  5. FiddlerScript开发
  6. Shell函数参数
  7. JavaScript 客户端JavaScript之事件(DOM API 提供模块之一)
  8. Android 更好的Activity生命周期回调
  9. Java 伪静态 Mapping
  10. AOJ/搜索递归分治法习题集
  11. (10.16)java小作业!
  12. python3 字符串操作相关函数
  13. .NET Core 2.1来了!
  14. 【记录】Xmind8 Pro 激活
  15. MySQL之慢查询日志分析
  16. nginx for Windows Known issues:path
  17. SpringBoot 2.x 整合ElasticSearch的demo
  18. python全栈开发day12
  19. .NET CORE2.0发布后没有 VIEWS视图页面文件
  20. Ext根据条件显示隐藏列

热门文章

  1. (转)Unity 之 UGUI 小总结
  2. c#特性类 Attribute
  3. nginx 导致文件上传中途中断 Failed to load resource: net::ERR_CONNECTION_RESET
  4. javascript获取后台传来的json
  5. 一分钟学会Git操作流程
  6. Java中的锁之乐观锁与悲观锁
  7. HDU 5011 NIM博弈
  8. 纯CSS的三角符号
  9. sass继承
  10. JavaScript中双叹号(!!)作用