Closest Common Ancestors

Time Limit: 2000ms
Memory Limit: 10000KB

This problem will be judged on PKU. Original ID: 1470
64-bit integer IO format: %lld      Java class name: Main

 
 
Write a program that takes as input a rooted tree and a list of pairs of vertices. For each pair (u,v) the program determines the closest common ancestor of u and v in the tree. The closest common ancestor of two nodes u and v is the node w that is an ancestor of both u and v and has the greatest depth in the tree. A node can be its own ancestor (for example in Figure 1 the ancestors of node 2 are 2 and 5)

 

Input

The data set, which is read from a the std input, starts with the tree description, in the form:

nr_of_vertices 
vertex:(nr_of_successors) successor1 successor2 ... successorn 
...
where vertices are represented as integers from 1 to n ( n <= 900 ). The tree description is followed by a list of pairs of vertices, in the form: 
nr_of_pairs 
(u v) (x y) ...

The input file contents several data sets (at least one). 
Note that white-spaces (tabs, spaces and line breaks) can be used freely in the input.

 

Output

For each common ancestor the program prints the ancestor and the number of pair for which it is an ancestor. The results are printed on the standard output on separate lines, in to the ascending order of the vertices, in the format: ancestor:times 
For example, for the following tree: 

 

Sample Input

5
5:(3) 1 4 2
1:(0)
4:(0)
2:(1) 3
3:(0)
6
(1 5) (1 4) (4 2)
(2 3)
(1 3) (4 3)

Sample Output

2:1
5:5

Hint

Huge input, scanf is recommended.

 

Source

 
解题:LCA。。。。
 
 #include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <vector>
#include <climits>
#include <algorithm>
#include <cmath>
#define LL long long
#define INF 0x3f3f3f
using namespace std;
const int maxn = ;
vector<int>g[maxn];
vector<int>q[maxn];
int n,m,cnt[maxn],uf[maxn];
bool vis[maxn],indeg[maxn];
int Find(int x) {
if(x != uf[x])
uf[x] = Find(uf[x]);
return uf[x];
}
void tarjan(int u) {
int i;
uf[u] = u;
for(i = ; i < g[u].size(); i++) {
if(!vis[g[u][i]] && g[u][i] != u) {
tarjan(g[u][i]);
uf[g[u][i]] = u;
}
}
vis[u] = true;
for(i = ; i < q[u].size(); i++) {
if(vis[q[u][i]]) cnt[Find(q[u][i])]++;
}
}
int main() {
int i,j,u,v,k;
while(~scanf("%d",&n)) {
for(i = ; i <= n; i++) {
g[i].clear();
q[i].clear();
cnt[i] = ;
indeg[i] = false;
}
for(i = ; i < n; i++) {
scanf("%d:(%d)",&u,&k);
for(j = ; j < k; j++) {
scanf("%d",&v);
g[u].push_back(v);
indeg[v] = true;
}
}
scanf("%d",&m);
while(m--) {
scanf(" (%d %d)",&u,&v);
q[u].push_back(v);
q[v].push_back(u);
}
memset(vis,false,sizeof(vis));
memset(cnt,,sizeof(cnt));
for(i = ; i <= n; i++)
if(!indeg[i]) {
tarjan(i);
break;
}
for(i = ; i <= n; i++)
if(cnt[i]) printf("%d:%d\n",i,cnt[i]);
}
return ;
}

最新文章

  1. android 真机调试出现错误 INSTALL_FAILED_INSUFFICIENT_STORAGE 的解决方法。
  2. HDOJ 4739 Zhuge Liang&amp;#39;s Mines
  3. Java Hour 55 Spring Framework 2
  4. ZOJ-3870 Team Formation
  5. git 删除已经 add 的文件
  6. 使用Quartz创建定时任务
  7. [连载]JavaScript讲义(04)--- 函数和闭包
  8. I.MX6 U-boot Kernel backlight setting
  9. ViewPage 一次滑动多页
  10. iOS--创建uiscrollview
  11. fork,exec,source
  12. springmvc json数据返回前台,中文乱码
  13. [SDOI 2009]HH的项链
  14. The listener supports no services
  15. ASP.NET CORE Swagger
  16. 掌握闭包closure (含义及优缺点)
  17. 写一个java死锁的demo
  18. Cannot find module &#39;socket.io&#39;
  19. Vue 使用 prerender-spa-plugin 添加loading
  20. align-items (适用于父类容器上)

热门文章

  1. 51nod 1133 不重叠的线段(贪心)
  2. PHP 官方说明
  3. 445 Add Two Numbers II 两数相加 II
  4. 190 Reverse Bits 颠倒二进制位
  5. Kali linux 2016.2(Rolling)里的应用更新和配置额外安全工具
  6. framework7 点取消后还提交表单解决方案
  7. laravel5.5文件上传
  8. Spring注解驱动开发之扩展原理
  9. 【C++】异常简述(一):C语言中的异常处理机制
  10. mongodb用户权限管理(二)