hdu 4118

Posted 早知如此绊人心,何如当初莫相识。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hdu 4118相关的知识,希望对你有一定的参考价值。

题意:一颗树,每个点都有一个人,每个人都去旅游,住在其他人的家里,每个人不能住重复的,原始位置和住的位置的距离为旅游的距离,问所有人的最大旅游距离

思路:对于当前的这条边,走过的人数为边左右最少人数(即点数),跑一遍即可

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 const int N=1e5+10;
 4 typedef long long ll;
 5 struct node{
 6     int x,y;
 7     node(int xx,int yy){
 8         x=xx;y=yy;
 9     }
10 };
11 struct is{
12     int x,y,z;
13 }a[N];
14 vector<node> e[N];
15 int dp[N];
16 
17 void dfs(int u){
18     dp[u]++;
19     for(int i=0;i<e[u].size();i++){
20         node p=e[u][i];
21         if(!dp[p.x]){
22             dfs(p.x);
23             dp[u]+=dp[p.x];
24         }
25     }
26 }
27 int main(){
28     int t;
29     int n,x,y,z;
30     cin>>t;
31     int kk=1;
32     while(t--){
33         memset(dp,0,sizeof(dp));
34         for(int i=0;i<N;i++) e[i].clear();
35         scanf("%d",&n);
36         for(int i=1;i<n;i++){
37             scanf("%d%d%d",&a[i].x,&a[i].y,&a[i].z);
38             e[a[i].x].push_back(node(a[i].y,a[i].z));
39             e[a[i].y].push_back(node(a[i].x,a[i].z));
40         }
41         dfs(1);
42         ll sum=0;
43         for(int i=1;i<n;i++){
44             int k=min(dp[a[i].x],dp[a[i].y]);
45             sum+=min(n-k,k)*a[i].z;
46         }
47         printf("Case #%d: ",kk++);
48         cout<<sum*2<<endl;
49     }
50 }

 

以上是关于hdu 4118的主要内容,如果未能解决你的问题,请参考以下文章

hdu-4118 Holiday's Accommodation(树形dp+树的重心)

HDU3829 Cat VS Dog —— 最大独立集

ZOJ4118 Stones in the Bucket

Bailian4118 开餐馆DP

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

HDU3247 Resource Archiver(AC自动机+BFS+DP)