[USACO08OCT]牧场散步Pasture Walking (LCA) (乱搞)

Posted zcdhj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[USACO08OCT]牧场散步Pasture Walking (LCA) (乱搞)相关的知识,希望对你有一定的参考价值。

题面传送门我太懒了所以吃掉题面

题解

可以发现如果两点不在一条链上的话,那么他们的最短路径一定会经过LCA。

所以可以维护一下每个点到树根的距离,然后大力前缀和乱搞就好了。

#include <bits/stdc++.h>

const int max_n=1e4+5;

int N,M,cnt;
int depth[max_n],father[15][max_n],lg2[max_n],first_edge[max_n],dis[max_n];

struct edge
{
    int to,w,next_edge;
}linker[max_n<<1];

inline int read()
{
    register int x=0;
    register char ch=getchar();
    while(!isdigit(ch))
        ch=getchar();
    while(isdigit(ch))
    {
        x=(x<<1)+(x<<3)+ch-‘0‘;
        ch=getchar();
    }   
    return x;
} 

inline void add_edge(int x,int y,int z)
{
    linker[++cnt].to=y;
    linker[cnt].w=z;
    linker[cnt].next_edge=first_edge[x];
    first_edge[x]=cnt;
    return;
}

inline void LCA_init(int cur,int fa)
{
    depth[cur]=depth[fa]+1;
    father[0][cur]=fa;
    for(register int i=1;i<=lg2[depth[cur]];++i)
        father[i][cur]=father[i-1][father[i-1][cur]];
    for(register int k=first_edge[cur];k;k=linker[k].next_edge)
    {
        if(!depth[linker[k].to]) 
        {
            dis[linker[k].to]=dis[cur]+linker[k].w;
            LCA_init(linker[k].to,cur);
        }
    }
    return;
}

inline int LCA(int x,int y)
{
    if(depth[x]<depth[y]) std::swap(x,y);
    while(depth[x]>depth[y])
        x=father[lg2[depth[x]-depth[y]]][x];
    if(x==y) return x;
    for(register int i=lg2[depth[x]];i>=0;--i)
        if(father[i][x]!=father[i][y]) x=father[i][x],y=father[i][y];
    return father[0][x];
}

int main()
{
    int x,y,z;
    N=read(),M=read();
    lg2[0]=-1;
    for(register int i=1;i<N;++i)
    {
        x=read(),y=read(),z=read();
        add_edge(x,y,z),add_edge(y,x,z);
        lg2[i]=lg2[i>>1]+1;
    }
    lg2[N]=lg2[N>>1]+1;
    LCA_init(1,0);
    for(register int i=1;i<=M;++i)
    {
        x=read(),y=read();
        printf("%d\n",dis[x]+dis[y]-(dis[LCA(x,y)]<<1));
    }
    return 0;
}

博主是蒟蒻,有错误请指出,谢谢!

以上是关于[USACO08OCT]牧场散步Pasture Walking (LCA) (乱搞)的主要内容,如果未能解决你的问题,请参考以下文章

洛谷 P2912 [USACO08OCT]牧场散步Pasture Walking

P2912 [USACO08OCT]牧场散步Pasture Walking

洛谷 P2912 [USACO08OCT]牧场散步Pasture Walking

洛谷P2912[USACO08OCT]牧场散步Pasture Walking

[luoguP2912] [USACO08OCT]牧场散步Pasture Walking(lca)

[USACO08OCT]牧场散步Pasture Walking (LCA) (乱搞)