博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ 3659 Conquer a New Region(路径压缩)
阅读量:6390 次
发布时间:2019-06-23

本文共 2121 字,大约阅读时间需要 7 分钟。

Conquer a New Region

Time Limit: 5 Seconds      
Memory Limit: 32768 KB

The wheel of the history rolling forward, our king conquered a new region in a distant continent.

There are N towns (numbered from 1 to N) in this region connected by several roads. It's confirmed that there is exact one route between any two towns. Traffic is important while controlled colonies are far away from the local country. We define the capacity C(i, j) of a road indicating it is allowed to transport at most C(i, j) goods between town i and town j if there is a road between them. And for a route between i and j, we define a value S(i, j) indicating the maximum traffic capacity between i and j which is equal to the minimum capacity of the roads on the route.

Our king wants to select a center town to restore his war-resources in which the total traffic capacities from the center to the other N - 1 towns is maximized. Now, you, the best programmer in the kingdom, should help our king to select this center.

Input

There are multiple test cases.

The first line of each case contains an integer N. (1 ≤ N ≤ 200,000)

The next N - 1 lines each contains three integers a, b, c indicating there is a road between town a and town b whose capacity is c. (1 ≤ a, b ≤ N, 1 ≤ c ≤ 100,000)

Output

For each test case, output an integer indicating the total traffic capacity of the chosen center town.

Sample Input

41 2 22 4 12 3 141 2 12 4 12 3 1

Sample Output

43 路径压缩 (并查集) 并不是动态规划 题目大意:从N个城市中选择一个,使得其他的城市到这个城市的交通效益最大

按边排序,从大到小插入,每条边将两个集合连起来,而新加的边是两个集合所有边最小的,那么两个集合中的点交叉的通路最小的边就是新加的,那只要枚举两个集合,a,b是a并入b更优还是b并入a更优就行了。集合内部点已经计算出,相互的只要知道集合中元素的个数就好了。

所以并查集只需要维护一个集合的元素个数,一个集合的总权值

View Code
1 # include
2 # include
3 # include
4 # define N 200100 5 using namespace std; 6 struct Edge 7 { 8 int u,v,w; 9 }edge[N];10 int f[N],num[N];11 long long cost[N];12 int find(int u)13 {14 if(f[u]==u) return u;15 return f[u] = find(f[u]);16 }17 bool cmp(struct Edge a,struct Edge b)18 {19 return a.w > b.w;20 }21 int main()22 {23 int n,i;24 while(scanf("%d",&n)!=EOF)25 {26 for(i=1;i

 

转载地址:http://bbsha.baihongyu.com/

你可能感兴趣的文章
yum安装开发库
查看>>
我的友情链接
查看>>
开源Python网络爬虫资料目录
查看>>
NSRunLoop Internals
查看>>
Hadoop2.4.1分布式安装
查看>>
PHP利用socket来实现POST数据
查看>>
Connection is read-only问题的产生原因与解决方法
查看>>
Proxmox VE 部署维护
查看>>
Linux软件包安装与卸载
查看>>
centos5.x安装sphinx
查看>>
3分钟搭建Ant Design Pro前端开发环境( MyClouds的前端选型)
查看>>
Scala各种用法
查看>>
Linux系统常用命令(二)
查看>>
简单的工厂模式学习
查看>>
温习如何画E-R图
查看>>
eclispe注释模板
查看>>
Thymeleaf教程 (三) 创建一个多语言的首页
查看>>
OSChina 周六乱弹 ——你们猜狗的舌头有多长
查看>>
OSChina 周日乱弹 —— 爱丽丝爱吃京酱肉丝
查看>>
2018.11月微信小程序优质开源项目
查看>>