博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2421 有一条连通下的最小生成树
阅读量:6004 次
发布时间:2019-06-20

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

Constructing Roads
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 22440   Accepted: 9588

Description

There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each other. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected.
We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.

Input

The first line is an integer N (3 <= N <= 100), which is the number of villages. Then come N lines, the i-th of which contains N integers, and the j-th of these N integers is the distance (the distance should be an integer within [1, 1000]) between village i and village j.
Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.

Output

You should output a line contains an integer, which is the length of all the roads to be built such that all the villages are connected, and this value is minimum.

Sample Input

30 990 692990 0 179692 179 011 2

Sample Output

179
#include 
#include
#include
#include
#include
using namespace std;const int N = 110;int father[N];struct edge{ int lp,rp,value;}ee[N*N];int map[N][N],flag[N][N],numedge,n;bool cmp(edge a,edge b){ return a.value < b.value;}//并查集模板int find(int x){ if(father[x] == x) return father[x]; else father[x]=find(father[x]); return father[x];}int merge(int x,int y){ int fx = find(x); int fy = find(y); if(fx!=fy) { father[fy] = fx; return 1; } else return 0; //要么bool类型,返回-1也是ture,只有return 0 才是false}//克鲁斯卡尔算法int kruskal(){ sort(ee,ee+numedge,cmp); for(int i = 1; i <= n; ++i) father[i] = i; int sum = 0; for(int i = 0; i < numedge; ++i){ int lx = ee[i].lp; int rx = ee[i].rp; if(merge(lx,rx)){ sum += ee[i].value; } } return sum;}int main(){ //freopen("1.txt","r",stdin); while(scanf("%d",&n) != EOF){ memset(flag,0,sizeof(flag)); for(int i = 1; i <= n; ++i){ for(int j = 1; j <= n; ++j) scanf("%d",&map[i][j]); } int m,x,y; scanf("%d",&m); while(m--){ scanf("%d%d",&x,&y); flag[x][y] = 1; } numedge = 0; //无向图,只用放1-2,1-3,2-3 for(int i = 1; i < n; ++i){ for(int j = i + 1; j <= n; j++){ if(flag[i][j]){ ee[numedge].lp = i; ee[numedge].rp = j; ee[numedge].value = 0; numedge++; } else{ ee[numedge].lp = i; ee[numedge].rp = j; ee[numedge].value = map[i][j]; numedge++; } } } int ans = kruskal(); printf("%d\n",ans); } return 0;}
坑爹,开始在并查集中找到共同根后应该返回false,自己写成return -1,返回的还是true,找错找了半天

转载于:https://www.cnblogs.com/zhangmingzhao/p/7256410.html

你可能感兴趣的文章
Java多线程执行示意图
查看>>
cocos2dx基础篇(6)——字体标签CCLabel
查看>>
域控制器无法向DNS注册SRV记录解决办法
查看>>
陕西近1400万手机用户个人信息被泄露
查看>>
文件服务器中病毒
查看>>
我的友情链接
查看>>
Powershell what-if
查看>>
How to configure the windows firewall using group policies
查看>>
btrfs文件系统管理及应用
查看>>
linux网络配置
查看>>
设置密钥登录服务器
查看>>
Python 处理word期间遇到的问题
查看>>
简单IT互联网平台强势登陆
查看>>
PHP 删除二维数组中的重复值函数
查看>>
破解window登入密码。。。
查看>>
动态路由------------RIP(路由信息协议)
查看>>
监理师课程4月1题作业
查看>>
Java注释
查看>>
利用Excel漏洞来破解Excel保护工作表密码
查看>>
java集合框架--ArrayList类、Vector和LinkedList类
查看>>