HDU 5723 Abandoned country落后渣国

Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)

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.

一个落后渣国有n(n≤100000)座从1到n编号的村子。荒废久了,路也该重新修修。有m(m≤1000000)条路需要重建,每条路长wi(wi≤1000000)。每条路长wi各不相同。旧时的路使村子直接或间接连通。每条路重修的单位造价相同。国王希望花最少的钱使各个村子直接或间接连通。待到这些路重修好后,国王会物色一个信使。国王会等概率地选择两个点作为起点和终点。现在国王想问你这个工程的最低造价与信使所走过路程的期望。

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.

第一行是一个整数T(T≤10)表示测试用例的数量。

对于每个测试用例,第一行有两个整数n,m表示村子与待重修路的数量。接下来m行,每行有三个数i,j,wi,表示有一条长wi的路连接村子i与j。

Output

输出

output the minimum cost and minimum Expectations with two decimal places. They separated by a space.

输出最低造价与保留两位小数的最小期望。用一个空格分开。

Sample Input - 输入样例

Sample Output - 输出样例

1
4 6
1 2 1
2 3 2
3 4 3
4 1 4
1 3 5
2 4 6

6 3.33

【题解】

  最小生成树+求期望,注意越界。

    期望 = 总路程/方法数。

    总路程分散到每条路上求,每条路经过的距离=长度*上方节点数*下方节点数。DFS可轻松求下方节点数,因此,上方节点数=n-下方节点数。

    方法数=1+2+……+(n-1),即n*(n-1)/2。

【代码 C++】

 #include <cstdio>
#include <cstring>
#include <algorithm>
int n, m, link[], head[], iE;
__int64 fCost, sum, cnt;
struct Edge{
int to, next, len;
}edge[];
void addEdge(int u, int v, int len){
edge[iE].to = v; edge[iE].len = len; edge[iE].next = head[u];
head[u] = iE++;
}
struct Road{
int a, b, len;
bool operator<(const Road &r) const{
return len < r.len;
}
}iRoad[];
int fid(int a){
return link[a] == a ? a : link[a] = fid(link[a]);
}
bool beCnct(int a, int b){
if (a == b) return ;
return link[a] = b;
}
void build(){
int i, j, u, v, len;
for (i = ; i <= n; ++i) link[i] = i;
fCost = iE = ; memset(head, -, sizeof(head)); for (i = ; i < m; ++i) scanf("%d%d%d", &iRoad[i].a, &iRoad[i].b, &iRoad[i].len);
std::sort(iRoad, iRoad + m); for (i = , j = ; j < n; ++i){
u = iRoad[i].a; v = iRoad[i].b; len = iRoad[i].len;
if (beCnct(fid(u), fid(v))){
addEdge(u, v, len); addEdge(v, u, len);
fCost += len; ++j;
}
}
cnt = (__int64)n*(n - ) >> ;
} __int64 DFS(int now, int pre){
int i;
__int64 opt = , temp;
for (i = head[now]; ~i; i = edge[i].next){
if (i == pre) continue;
opt += temp = DFS(edge[i].to, i ^ );
sum += temp*(n - temp)*edge[i].len;
}
return opt;
}
int main(){
int t;
scanf("%d", &t);
while (t--){
scanf("%d%d", &n, &m);
build();
sum = ; DFS(, -);
printf("%I64d %.2lf\n", fCost, 1.0*sum / cnt);
}
return ;
}

HDU 5723 Abandoned country(落后渣国)的更多相关文章

  1. 最小生成树 kruskal hdu 5723 Abandoned country

    题目链接:hdu 5723 Abandoned country 题目大意:N个点,M条边:先构成一棵最小生成树,然后这个最小生成树上求任意两点之间的路径长度和,并求期望 /************** ...

  2. HDU 5723 Abandoned country 最小生成树+搜索

    Abandoned country Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others ...

  3. HDU 5723 Abandoned country 【最小生成树&&树上两点期望】

    任意门:http://acm.hdu.edu.cn/showproblem.php?pid=5723 Abandoned country Time Limit: 8000/4000 MS (Java/ ...

  4. HDU 5723 Abandoned country (最小生成树 + dfs)

    Abandoned country 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5723 Description An abandoned coun ...

  5. hdu 5723 Abandoned country 最小生成树 期望

    Abandoned country 题目连接: http://acm.hdu.edu.cn/showproblem.php?pid=5723 Description An abandoned coun ...

  6. HDU 5723 Abandoned country(kruskal+dp树上任意两点距离和)

    Problem DescriptionAn abandoned country has n(n≤100000) villages which are numbered from 1 to n. Sin ...

  7. hdu 5723 Abandoned country 最小生成树+子节点统计

    Abandoned country Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others ...

  8. hdu 5723 Abandoned country(2016多校第一场) (最小生成树+期望)

    Abandoned country Time Limit: 8000/4000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others ...

  9. HDU 5723 Abandoned country (最小生成树+dfs)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5723 n个村庄m条双向路,从中要选一些路重建使得村庄直接或间接相连且花费最少,这个问题就是很明显的求最 ...

随机推荐

  1. CentOS 7 更新源 – 使用国内 163 yum 源

    突然想起试试 Docker,在一台计算机上安装了 CentOS 7,准备开工,突然想起还需要做一件事情,更改源,不然安装肯定会很慢,网上搜索了一下,文章很多,但是会出一些问题,所以将自己的成功的日志写 ...

  2. Hibernate,JPA注解@ManyToMany_JoinTable

    可以通过@ManyToMany注解可定义的多对多关联.同时,也需要通过注解@JoinTable描述关联表和关联条件.如果是双向关联,其中一段必须定义为owner,另一端必须定义为inverse(在对关 ...

  3. 将Nagios监控信息存入Mysql

    一.NDOUtils安装需求: nagios:安装方法:http://www.cnblogs.com/Richardzhu/p/3340638.html mysql:源码安装方法:http://www ...

  4. sqlite加密

    一直使用sqlite来管理本地的数据,但是Xcode中的SDK中集成的sqlite是免费的,不提供加密模块,但是程序中用到的很多数据,有时候是不想让别人看到,一开始虑修改sqlite的源码,自己重新编 ...

  5. C#:文件、路径(Path_File)

    public class Path_File { public string AppPath { get { return AppDomain.CurrentDomain.BaseDirectory; ...

  6. C++ Template Operator

    #include <iostream> #include <string> #include <deque> #include <stdexcept> ...

  7. C++中关于cin、cin.get()、cin.getline()、getline()、gets()等函数的用法

    1.cin>> 用法1:最基本,也是最常用的用法,输入一个数字: 注意:>> 是会过滤掉不可见的字符(如 空格 回车,TAB 等) cin>>noskipws> ...

  8. 【转】JS 和 java 交互

    android中如何获得webView中的内容发表于 2011 年 06 月 13 日 由 admin本文概要:在程序中经常会用到webView来显示网页,但如果能够得到网页中的内容呢,本文将给你一个 ...

  9. sqlite3常用命令&语法

    sqlite数据库只用一个文件就ok,小巧方便,所以是一个非常不错的嵌入式数据库,SQLite大量的被用于手机,PDA,MP3播放器以及机顶盒设备.    Mozilla Firefox使用SQLit ...

  10. 测试Animation大型动画文件拆分播放的可行性

    最近遇到一个问题,剧情动画文件大了复杂了之后,每次修改输出很麻烦,导出fbx就需要20分钟. 所以我想到了一个比较好的解决方法,在unity这边解决.把动画文件拆分成若干份,然后赋予不同的层并行播放 ...