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

BZOJ 1602 牧场行走

时间:2017-10-30 17:06:59      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:names   wap   last   color   math   void   ==   ons   struct   

直接写一波Lca就好了

技术分享
 1 #include<cstdio>
 2 #include<cmath>
 3 #include<algorithm>
 4 using namespace std;
 5 const int maxn=1010;
 6 int n,m,x,y,z,ans=0,tot=0,dis[maxn],last[maxn],dep[maxn],p[maxn][32];
 7 struct edge{int to,pre,dis;}e[maxn<<1];
 8 
 9 void read(int &k){
10     k=0; int f=1; char c=getchar();
11     while (c<0||c>9)c==-&&(f=-1),c=getchar();
12     while (0<=c&&c<=9)k=k*10+c-0,c=getchar();
13     k*=f;
14 }
15 void add(int x,int y,int z){e[++tot].to=y;e[tot].pre=last[x];e[tot].dis=z;last[x]=tot;}
16 void dfs(int u,int fa){
17     dep[u]=dep[fa]+1; p[u][0]=fa;
18     for (int i=1;i<=log2(dep[u]);i++) p[u][i]=p[p[u][i-1]][i-1];
19     for (int i=last[u],to=e[i].to;i;i=e[i].pre,to=e[i].to)
20     if (to!=fa) dis[to]=dis[u]+e[i].dis,dfs(to,u);
21 }
22 int lca(int x,int y){
23     if (dep[x]<dep[y]) swap(x,y);
24     if (dep[x]>dep[y])
25     for (int i=log2(dep[x]-dep[y]+1);i>=0,dep[x]!=dep[y];i--)
26         if (dep[p[x][i]]>=dep[y]) x=p[x][i];
27      if (x==y) return x;
28      for (int i=log2(dep[x]);i>=0;i--)
29      if (p[x][i]!=p[y][i]) x=p[x][i],y=p[y][i];
30      return p[x][0];
31 }
32 int main(){
33     read(n); read(m);
34     for (int i=1;i<n;i++){
35         read(x); read(y); read(z);
36         add(x,y,z); add(y,x,z);
37     }
38     dfs(1,0);
39     for (int i=1;i<=m;i++) read(x),read(y),printf("%d\n",dis[x]+dis[y]-2*dis[lca(x,y)]);
40     return 0;
41 }
View Code

BZOJ 1602 牧场行走

标签:names   wap   last   color   math   void   ==   ons   struct   

原文地址:http://www.cnblogs.com/DriverLao/p/7755022.html

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