poj 1986 LCA 求树上任意两节点距离

传送门

题意:就是一棵树,求节点距离。

思路:如果t是u,v的最近公共祖先,那么d[u,v]=d[u,root]+d[v,root]-2*d[t,root],就根据这个来搞之。

每到一个点然后遍历所有询问。。。果断超了,之后便用vector来存询问,也超时,然后find函数压缩了下路径就过了。。。。。。。

#include
#include
#include
#include
using namespace std;
struct node
{
    int v,w;
    node(){};
    node(int a,int b){v=a;w=b;}
};
vectore[40005],q[150000];
int m,n,k,d[40005],f[40005],ans[150000];
bool vis[40005];
char str[5];
int find(int x)
{
    if(f[x]==x)return x;
    else
    {
        f[x]=find(f[x]);
        return f[x];
    }
}
void LCA(int u,int dis)
{
    int v;
    vis[u]=1;
    d[u]=dis;
    f[u]=u;
    int size=e[u].size();
    for(int i=0;i


你可能感兴趣的:(acm)