码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-01-01 16:53:08      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:git   pre   https   usaco   next   lin   while   wal   max   

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

题解

可以发现如果两点不在一条链上的话,那么他们的最短路径一定会经过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) (乱搞)

标签:git   pre   https   usaco   next   lin   while   wal   max   

原文地址:https://www.cnblogs.com/zcdhj/p/8166819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!