#include<bits/stdc++.h>
using namespace std;
const int N=5e5+10;
int head[N];
int n,m,s,f[N][30],lg[N],h[N];
///该结点的深度
///f[i][j]为i结点向上2^j的祖先
struct node
{
int to,ne;
}bian[N*2];
int tot = 0;
void add_edge(int x,int y)
{
tot++;
bian[tot].to = y;
bian[tot].ne = head[x];
head[x] = tot;
}
void dfs(int x,int fx)///一个结点和他的父亲结点
{
h[x] = h[fx]+1;///深度就加一
f[x][0] = fx;
for(int i=1; ( 1<<i )<=h[x]; i++)
{
f[x][i]=f[ f[x][i-1] ][i-1];
}
for(int i=head[x];i;i=bian[i].ne)
{
if(bian[i].to!=fx)///防止走回去了
{
dfs(bian[i].to,x);
}
}
}
int LCA(int x,int y)
{
if(h[x]<h[y])
swap(x,y);
while(h[x]>h[y])
x=f[x][ lg[h[x]-h[y]] ];
if(x==y)
return x;
for(int i=lg[h[x]]; i>=0; i--)
if(f[x][i]!=f[y][i])
x=f[x][i],y=f[x][i];
return f[x][0];
}
int main()
{
scanf("%d %d %d",&n,&m,&s);
for(int i=1; i<n; i++)
{
int x,y;
scanf("%d %d",&x,&y);
add_edge(x,y);
add_edge(y,x);
}
dfs(s,0);
for(int i=2; i<=n; i++)
lg[i]=lg[i>>1]+1;
while(m--)
{
int a,b;
scanf("%d %d",&a,&b);
printf("%d\n",LCA(a,b));
}
return 0;
}
求两条路径是不是有公共交点
#include<bits/stdc++.h>
using namespace std;
const int N=5e5+10;
int head[N];
int n,m,s,f[N][30],lg[N],h[N];
///该结点的深度
///f[i][j]为i结点向上2^j的祖先
#define bug(x) cout<<#x<<" == "<<x<<endl;
struct node
{
int to,ne;
} bian[N*2];
int tot = 0;
void add_edge(int x,int y)
{
tot++;
bian[tot].to = y;
bian[tot].ne = head[x];
head[x] = tot;
}
void dfs(int x,int fx)///一个结点和他的父亲结点
{
h[x] = h[fx]+1;///深度就加一
f[x][0] = fx;
for(int i=1; ( 1<<i )<=h[x]; i++)
{
f[x][i]=f[ f[x][i-1] ][i-1];
}
for(int i=head[x]; i; i=bian[i].ne)
{
if(bian[i].to!=fx)///防止走回去了
{
dfs(bian[i].to,x);
}
}
}
int LCA(int x,int y)
{
if(h[x]<h[y])
swap(x,y);
while(h[x]>h[y])
x=f[x][ lg[h[x]-h[y]] ];
if(x==y)
return x;
for(int i=lg[h[x]]; i>=0; i--)
if(f[x][i]!=f[y][i])
x=f[x][i],y=f[y][i];
return f[x][0];
}
int main()
{
scanf("%d %d",&n,&m);
for(int i=1; i<n; i++)
{
int x,y;
scanf("%d %d",&x,&y);
add_edge(x,y);
add_edge(y,x);
}
dfs(1,0);
for(int i=2; i<=n; i++)
lg[i]=lg[i>>1]+1;
while(m--)
{
int a,b;
scanf("%d %d",&a,&b);
int c,d;
scanf("%d %d",&c,&d);
int lcac=LCA(c,d);
int disac = h[a]+h[c]-2*h[ LCA(a,c) ];
int disbd = h[b]+h[d]-2*h[ LCA(b,d) ];
int disab = h[a]+h[b]-2*h[ LCA(a,b) ];
int discd = h[c]+h[d]-2*h[ LCA(c,d) ];
if(disac+disbd>disab+discd)
{
printf("N\n");
}
else
{
printf("Y\n");
}
}
return 0;
}