HDU 5723 Abandoned country (最小生成树 + dfs)
Abandoned country
题目链接:
http://acm.hdu.edu.cn/showproblem.php?pid=5723
Description
An abandoned country has n(n≤100000) villages which are numbered from 1 to n. Since abandoned for a long time, the roads need to be re-built. There are m(m≤1000000) roads to be re-built, the length of each road is wi(wi≤1000000). Guaranteed that any two wi are different. The roads made all the villages connected directly or indirectly before destroyed. Every road will cost the same value of its length to rebuild. The king wants to use the minimum cost to make all the villages connected with each other directly or indirectly. After the roads are re-built, the king asks a men as messenger. The king will select any two different points as starting point or the destination with the same probability. Now the king asks you to tell him the minimum cost and the minimum expectations length the messenger will walk.
Input
The first line contains an integer T(T≤10) which indicates the number of test cases.
For each test case, the first line contains two integers n,m indicate the number of villages and the number of roads to be re-built. Next m lines, each line have three number i,j,wi, the length of a road connecting the village i and the village j is wi.
Output
output the minimum cost and minimum Expectations with two decimal places. They separated by a space.
Sample Input
1
4 6
1 2 1
2 3 2
3 4 3
4 1 4
1 3 5
2 4 6
Sample Output
6 3.33
Source
2016 Multi-University Training Contest 1
##题意: 给出n个点m条边构成的图,求一个最小生成树,并且要求任意两点间距离和的期望最小.
##题解: 一开始看到期望感觉有点迷,不过题目里有一句话:任意两边不等. 这意味着最小生成树是唯一的,所以就不存在最小期望了. 这里用kruskal直接求最小生成树,把生成树中的边记录下来,再dfs跑一遍记录任意两点的距离和. 求平均距离和是直接抄的原题:HDU 2376 参考的博客:(http://www.cnblogs.com/wally/archive/2013/06/03/3116020.html)
WA:之前由于n*(n-1)没有考虑超longlong的情况,WA到爆炸. 归根结底还是代码习惯不好,真是弱到不行啊... 以后写代码应时刻注意操作数的范围.
##代码: ``` cpp #include