-
Notifications
You must be signed in to change notification settings - Fork 0
/
LCA.cpp
46 lines (46 loc) · 919 Bytes
/
LCA.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include<iostream>
using namespace std;
const int N=500050,M=N*2;
int head[N],ver[M],Next[M],tot;
int par[N][25],dep[N];
int n,m,s,u,v;
void add(int x,int y){
ver[++tot]=y,Next[tot]=head[x],head[x]=tot;
}
void dfs(int x,int fa){
dep[x]=dep[fa]+1;
par[x][0]=fa;
for(int i=head[x];i;i=Next[i]){
int y=ver[i];
if(y==fa) continue;
dfs(y,x);
}
}
void getf(){
for(int up=1;(1<<up)<=n;up++){
for(int i=1;i<=n;i++){
par[i][up]=par[par[i][up-1]][up-1];
}
}
}
int lca(int x,int y){
if(dep[x]<dep[y]) swap(x,y);
for(int i=20;i>=0;i--) if(dep[par[x][i]]>=dep[y]) x=par[x][i];
if(x==y) return x;
for(int i=20;i>=0;i--) if(par[x][i]!=par[y][i]) x=par[x][i],y=par[y][i];
return par[x][0];
}
int main(){
scanf("%d%d%d",&n,&m,&s);
for(int i=1;i<n;i++){
scanf("%d%d",&u,&v);
add(u,v);add(v,u);
}
dfs(s,0);
getf();
for(int i=1;i<=m;i++){
scanf("%d%d",&u,&v);
printf("%d\n",lca(u,v));
}
return 0;
}