51Nod 1737 配对(树的重心)

http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1737

题意:

思路:

树的重心。

树的重心就是其所以子树的最大的子树结点数最少,删除这个点后最大连通块的结点数最小,也就说各个连通块尽量平衡。

这道题的话就是先求一个重心,然后求各个点到重心的距离之和。

 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstring>
 4 #include<cstdio>
 5 #include<vector>
 6 #include<queue>
 7 #include<cmath>
 8 #include<map>
 9 using namespace std;
10
11 const int maxn=1e5+5;
12 const int INF=0x3f3f3f3f;
13
14 int n;
15
16 vector<pair<int,int> > edge[maxn];
17
18 int zx,sz;
19 int son[maxn],vis[maxn];
20 long long ww[maxn];   //各个点到重心的距离
21
22 void init()
23 {
24     for(int i=1;i<=n;i++)
25         edge[i].clear();
26     memset(vis,0,sizeof(vis));
27     memset(ww,0,sizeof(ww));
28     sz=INF;
29     zx=-1;
30 }
31
32 void dfs(int u)
33 {
34     vis[u]=1;
35     son[u]=0;
36     int temp=0;
37     for(int i=0;i<edge[u].size();i++)
38     {
39         int v=edge[u][i].first;
40         if(!vis[v])
41         {
42             dfs(v);
43             son[u]+=son[v]+1;    //找到该子树中的最大结点数
44             temp=max(temp,son[v]+1);
45         }
46     }
47     temp=max(temp,n-son[u]-1);    //删去重心后子树最大结点数和非重心的子树比较
48     if(temp<sz)
49     {
50         zx=u;
51         sz=temp;
52     }
53 }
54
55 void sum(int u)
56 {
57     vis[u]=1;
58     for(int i=0;i<edge[u].size();i++)
59     {
60         int v=edge[u][i].first;
61         if(!vis[v])
62         {
63             ww[v] =ww[u]+edge[u][i].second;
64             sum(v);
65         }
66     }
67 }
68
69 int main()
70 {
71     //freopen("D:\\input.txt","r",stdin);
72     while(~scanf("%d",&n))
73     {
74         init();
75         int u,v,w;
76         for(int i=1;i<=n-1;i++)
77         {
78             scanf("%d%d%d",&u,&v,&w);
79             edge[u].push_back(make_pair(v,w));
80             edge[v].push_back(make_pair(u,w));
81         }
82
83         dfs(1);
84         memset(vis,0,sizeof(vis));
85         sum(zx);
86         long long ans=0;
87         for(int i=1;i<=n;i++)
88             ans+=ww[i];
89         printf("%lld\n",ans);
90     }
91 }
时间: 2024-10-08 10:17:44

51Nod 1737 配对(树的重心)的相关文章

51nod 配对(求树的重心)

传送门:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1737 给出一棵n个点的树,将这n个点两两配对,求所有可行的方案中配对两点间的距离的总和最大为多少. Input 一个数n(1<=n<=100,000,n保证为偶数) 接下来n-1行每行三个数x,y,z表示有一条长度为z的边连接x和y(0<=z<=1,000,000,000) Output 一个数表示答案 Input示例 6 1 2 1 1 3 1

1737 配对

1737 配对 基准时间限制:1 秒 空间限制:131072 KB 分值: 40 难度:4级算法题 给出一棵n个点的树,将这n个点两两配对,求所有可行的方案中配对两点间的距离的总和最大为多少. Input 一个数n(1<=n<=100,000,n保证为偶数) 接下来n-1行每行三个数x,y,z表示有一条长度为z的边连接x和y(0<=z<=1,000,000,000) Output 一个数表示答案 Input示例 6 1 2 1 1 3 1 1 4 1 3 5 1 4 6 1 Out

poj 1655 树的重心

Balancing Act Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 13178   Accepted: 5565 Description Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1...N. Deleting any node from the tree yields a forest: a collection of one or m

poj1655 Balancing Act 求树的重心

http://poj.org/problem?id=1655 Balancing Act Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 9072   Accepted: 3765 Description Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1...N. Deleting any node from the tree yields a fo

poj 1655 找树的重心

树形DP 求树的重心,即选择一个结点删去,使得分出的 若干棵树的结点数 的最大值最小 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 #include<map> #include<set>

POJ1655 Balancing Act(树的重心)

题目链接 Balancing Act 就是求一棵树的重心,然后统计答案. 1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 #define REP(i,n) for(int i(0); i < (n); ++i) 6 #define for_edge(i,x) for(int i = H[x]; i; i = X[i]) 7 8 const int INF = 1 << 30; 9 const int N = 10

codeforces 685B Kay and Snowflake 树的重心

分析:就是找到以每个节点为根节点的树的重心 树的重心可以看这三篇文章: 1:http://wenku.baidu.com/link?url=yc-3QD55hbCaRYEGsF2fPpXYg-iO63WtCFbg4RXHjERwk8piK3dgeKKvUBprOW8hJ7aN7h4ZC09QE9x6hYV3lD7bEvyOv_l1E-ucxjHJzqi 2:http://fanhq666.blog.163.com/blog/static/81943426201172472943638/ 3:ht

POJ 1655 Balancing Act (求树的重心)

求树的重心,直接当模板吧.先看POJ题目就知道重心什么意思了... 重心:删除该节点后最大连通块的节点数目最小 1 #include<cstdio> 2 #include<cstring> 3 #include<iostream> 4 #include<queue> 5 #include<stack> 6 using namespace std; 7 #define LL long long 8 #define clc(a,b) memset(a

POJ 1655 Balancing Act (树的重心,常规)

题意:求树的重心,若有多个重心,则输出编号较小者,及其子树中节点最多的数量. 思路: 树的重心:指的是一个点v,在删除点v后,其子树的节点数分别为:u1,u2....,设max(v)为其中的最大值,点v的max(v)是所有点里面最小的,称v为树的重心. 如何求任一重心?按树形来看,max(v)可以由其父亲贡献,也可以由其任一孩子贡献.孩子比较好解决,不就是深搜一遍,然后回溯时统计下数量就行了?而父亲的怎么办?可以知道,点v到其父亲这一叉就是n-sum(v)了,sum(v)指的是以v为根的子树的节