Nearest Common Ancestors(poj 1330)
题意:给定一棵树,询问两个节点的最近公共祖先。
输入:第一行T,表示测试组数。
每组测试数据包含一个n,表示节点数目,下面n-1行是连接的边,最后一行是询问
输出:共T行,代表每组的测试结果
- /*
- 倍增LCA
- 注意这是树,所以边是单向的,深搜的时候从根节点开始搜
- */
- #include<cstdio>
- #include<iostream>
- #include<cstring>
- #define M 10010
- #define S 20
- using namespace std;
- int head[M],deep[M],fa[M][S+],in[M],num,n;
- struct node
- {
- int u,v,pre;
- };node e[M*];
- void add(int x,int y)
- {
- ++num;
- e[num].u=x;
- e[num].v=y;
- e[num].pre=head[x];
- head[x]=num;
- }
- void dfs(int now,int from,int c)
- {
- fa[now][]=from;deep[now]=c;
- for(int i=head[now];i;i=e[i].pre)
- if(e[i].v!=from)
- dfs(e[i].v,now,c+);
- }
- void get_fa()
- {
- for(int j=;j<=S;j++)
- for(int i=;i<=n;i++)
- fa[i][j]=fa[fa[i][j-]][j-];
- }
- int get_same(int a,int t)
- {
- for(int i=;i<=S;i++)
- if(t&(<<i))
- a=fa[a][i];
- return a;
- }
- int LCA(int a,int b)
- {
- if(deep[a]<deep[b])swap(a,b);
- a=get_same(a,deep[a]-deep[b]);
- if(a==b)return a;
- for(int i=S;i>=;i--)
- if(fa[a][i]!=fa[b][i])
- {
- a=fa[a][i];
- b=fa[b][i];
- }
- return fa[a][];
- }
- void init()
- {
- scanf("%d",&n);
- for(int i=;i<n;i++)
- {
- int x,y;
- scanf("%d%d",&x,&y);
- in[y]++;
- add(x,y);
- }
- int p;
- for(int i=;i<=n;i++)
- if(!in[i])
- {
- p=i;
- break;
- }
- dfs(p,p,);
- get_fa();
- int a,b;
- scanf("%d%d",&a,&b);
- printf("%d\n",LCA(a,b));
- }
- int main()
- {
- int T;
- scanf("%d",&T);
- while(T--)
- {
- memset(e,,sizeof(e));
- memset(head,,sizeof(head));
- memset(deep,,sizeof(deep));
- memset(fa,,sizeof(fa));
- memset(in,,sizeof(in));
- num=;
- init();
- }
- return ;
- }
Nearest Common Ancestors(poj 1330)的更多相关文章
- Nearest Common Ancestors (POJ 1330)
A rooted tree is a well-known data structure in computer science and engineering. An example is show ...
- POJ - 1330 Nearest Common Ancestors(基础LCA)
POJ - 1330 Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 10000KB 64bit IO Format: %l ...
- POJ 1330 Nearest Common Ancestors(裸LCA)
Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 39596 Accept ...
- Nearest Common Ancestors(LCA板子)
题目链接:http://poj.org/problem?id=1330 Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 1000 ...
- POJ 1330 Nearest Common Ancestors / UVALive 2525 Nearest Common Ancestors (最近公共祖先LCA)
POJ 1330 Nearest Common Ancestors / UVALive 2525 Nearest Common Ancestors (最近公共祖先LCA) Description A ...
- POJ 1330 Nearest Common Ancestors(Tree)
题目:Nearest Common Ancestors 根据输入建立树,然后求2个结点的最近共同祖先. 注意几点: (1)记录每个结点的父亲,比较层级时要用: (2)记录层级: (3)记录每个结点的孩 ...
- poj 1330 Nearest Common Ancestors(LCA 基于二分搜索+st&rmq的LCA)
Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 30147 Accept ...
- POJ 1330 Nearest Common Ancestors (LCA,dfs+ST在线算法)
Nearest Common Ancestors Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 14902 Accept ...
- POJ 1330 Nearest Common Ancestors(lca)
POJ 1330 Nearest Common Ancestors A rooted tree is a well-known data structure in computer science a ...
随机推荐
- jni log 使用
1. 在源文件中添加头文件 #include <android/log.h> #define LOG_TAG "System.out.c" #define LOGD(. ...
- TCP的三次握手与四次挥手详解
TCP的三次握手与四次挥手是TCP创建连接和关闭连接的核心流程,我们就从一个TCP结构图开始探究中的奥秘 序列号seq:占4个字节,用来标记数据段的顺序,TCP把连接中发送的所有数据字节都编上一个序 ...
- JavaScript判断数组是否包含指定元素的方法
本文实例讲述了JavaScript判断数组是否包含指定元素的方法.分享给大家供大家参考.具体如下: 这段代码通过prototype定义了数组方法,这样就可以在任意数组调用contains方法 /** ...
- 洛谷 P1514 引水入城
这次不说闲话了,直接怼题 这道题用bfs其实并不难想,但比较困难的是怎么解决满足要求时输出蓄水厂的数量.其实就像其他题解说的那样,我们可以用bfs将它转化成一个区间覆盖问题,然后再进行贪心. 首先枚举 ...
- mongodb测试类
public class MongoManager { private static final String MONGO_DBNAME="local"; private stat ...
- iOS 高效 Mac 配置
https://testerhome.com/topics/3045 https://support.apple.com/zh-cn/HT201236
- 初涉「带权并查集」&&bzoj3376: [Usaco2004 Open]Cube Stacking 方块游戏
算是挺基础的东西 Description 约翰和贝茜在玩一个方块游戏.编号为1到n的n(1≤n≤30000)个方块正放在地上.每个构成一个立方柱. 游戏开始后,约翰会给贝茜发出P(1≤P ...
- GIMP用Path作画了解一下
先准备好Path的底稿,只是实验学到的东西,粗糙了点.Paint through the Path,顾名思义,就是沿着Path作画: 1/如果选择的是Stroke line,可以根据自己的喜好,调节S ...
- laravel如何利用数据库的形式发送通知
具体实现需要分几步: 1.修改驱动为database; 2.创建database的queue表 3.创建任务sendMessage 4.创建发送逻辑dispatch 5.启动队列 接下来我们进行实操: ...
- Spring核心技术(十二)——基于Java的容器配置(二)
使用@Configuration注解 @Configuration注解是一个类级别的注解,表明该对象是用来指定Bean的定义的.@Configuration注解的类通过@Bean注解的方法来声明Bea ...