博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-1861-NETWORK 解题报告
阅读量:4691 次
发布时间:2019-06-09

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

Network
Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 16628   Accepted: 6597   Special Judge

Description

Andrew is working as system administrator and is planning to establish a new network in his company. There will be N hubs in the company, they can be connected to each other using cables. Since each worker of the company must have access to the whole network, each hub must be accessible by cables from any other hub (with possibly some intermediate hubs). 
Since cables of different types are available and shorter ones are cheaper, it is necessary to make such a plan of hub connection, that the maximum length of a single cable is minimal. There is another problem — not each hub can be connected to any other one because of compatibility problems and building geometry limitations. Of course, Andrew will provide you all necessary information about possible hub connections. 
You are to help Andrew to find the way to connect hubs so that all above conditions are satisfied. 

Input

The first line of the input contains two integer numbers: N - the number of hubs in the network (2 <= N <= 1000) and M - the number of possible hub connections (1 <= M <= 15000). All hubs are numbered from 1 to N. The following M lines contain information about possible connections - the numbers of two hubs, which can be connected and the cable length required to connect them. Length is a positive integer number that does not exceed 10
6. There will be no more than one way to connect two hubs. A hub cannot be connected to itself. There will always be at least one way to connect all hubs.

Output

Output first the maximum length of a single cable in your hub connection plan (the value you should minimize). Then output your plan: first output P - the number of cables used, then output P pairs of integer numbers - numbers of hubs connected by the corresponding cable. Separate numbers by spaces and/or line breaks.

Sample Input

4 61 2 11 3 11 4 22 3 13 4 12 4 1

Sample Output

141 21 32 33 4

Source

, Northern Subregion

好久没有更新这个博客,觉得自己还是不够努力,自己的acm学习之路的脚步走的很慢,希望尽快改变现状吧。这道题考察kruskal算法,留下个记录

题解:题目大意是有n个顶点,m条边,使图连通,使边权和最小,不构成回路

kruskal算法:按边权从小到到排序,顺序将边加入图中,若图中两点不连通则加入,否则就不考虑,(判断两点是否在图中中并查集,并查集的主要功能就是合并和查找的功能),最终就可以解答此题,找到最小的边权的连通图。

初始化并查集f[]数组(f中每个数等于下标值)find(x),

查找x的祖先,若x!=find(x)则find(find(x)),递归操作即可

合并操作,union(x,y) 若两个是不同的祖先则合并。

#include 
#include
#include
#include
using namespace std;const int maxn = 1e6+7;int father[maxn];int n, m, c = 1;struct _edge{ int x, y, d;}edge[maxn], ans[maxn];bool cmp(_edge a, _edge b){ return a.d < b.d;}int fi(int x){ return x == father[x] ? x : father[x] = fi(father[x]);}void union1(int x, int y){ int p1 = fi(x), p2 = fi(y); if (p1 == p2) return; father[p1] = p2;}int check(int x, int y){ int p = fi(x), q = fi(y); if (p == q) return 1; return 0;}void init(){ for (int i=0; i<=n; i++) father[i] = i;}void kruskal(){ for (int i=1; i<=m; i++) { int x = edge[i].x; int y = edge[i].y; if (fi(x) != fi(y)) { union1(x, y); ans[c].x = x; ans[c].y = y; ans[c].d = edge[i].d; c++; } }}int main(){ int x, y; scanf("%d%d", &n, &m); init(); for (int i=1; i<=m; i++) { scanf("%d%d%d", &edge[i].x, &edge[i].y, &edge[i].d); } sort(edge+1, edge+m+1, cmp); kruskal(); printf("%d\n", ans[c-1].d); printf("%d\n", c-1); for (int i=1; i

转载于:https://www.cnblogs.com/fayne/p/7224790.html

你可能感兴趣的文章
C#中StreamReader读取中文出现乱码
查看>>
使用BufferedReader的时候出现的问题
查看>>
linux安装图形界面
查看>>
博弈论之入门小结
查看>>
解决IE8下opacity属性失效问题,无法隐藏元素
查看>>
批处理文件中的路径问题
查看>>
hibernate出现No row with the given identifier exists问题
查看>>
为什么wait()和notify()属于Object类
查看>>
PHP 在5.1.* 和5.2.*之间 PDO数据库操作中的不同!
查看>>
导入properties时的坑
查看>>
配置NRPE的通讯
查看>>
shp系列(一)——利用C++进行shp文件的读(打开)与写(创建)开言
查看>>
匹配两个空格之间的字符。。。
查看>>
CSS 文字溢出 变成省略号 ...
查看>>
Spring事务
查看>>
java编程基础(三)流程控制语句
查看>>
让数据库跑的更快的7个MySQL优化建议
查看>>
jquery 取id模糊查询
查看>>
解决在vue中,自用mask模态框出来后,下层的元素依旧可以滑动的问题
查看>>
修改node节点名称
查看>>