日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ 1330 Nearest Common Ancestors 【LCA模板题】

發(fā)布時間:2025/3/14 编程问答 44 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ 1330 Nearest Common Ancestors 【LCA模板题】 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

任意門: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個節(jié)點,N-1條邊的樹 和 一對結點,求這對結點的最近公共祖先。

解題思路:

找根結點用一個標記數(shù)組

找公共祖先用簡單粗暴的 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\n", ans); 85 } 86 return 0; 87 } View Code

?

轉載于:https://www.cnblogs.com/ymzjj/p/9744229.html

總結

以上是生活随笔為你收集整理的POJ 1330 Nearest Common Ancestors 【LCA模板题】的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內容還不錯,歡迎將生活随笔推薦給好友。