Constructing Roads
Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 22048   Accepted: 9389

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

3
0 990 692
990 0 179
692 179 0
1
1 2

Sample Output

179

Source

题解

有n个村庄,编号为1 ,2 ,3 ,,,n  应该建造道路使他们互相可达

对输入数据

3
0 990 692
990 0 179
692 179 0
1
1 2

意思有3个村庄,

0 990 692
990 0 179
692 179 0

意思是1号到1,2,3的距离分别为0 990 692

1
1 2

意思是有一条道路已经接通,就是1号与2号间的道路

#include<cstdio>
#include<algorithm>
#include<iostream>
using namespace std;
#define N 110
struct node{
int x,y,v;
}e[N*(N+)];
int n,m,k,tot,cnt,fa[N];
bool cmp(const node &a,const node &b){
return a.v<b.v;
}
int find(int x){
return fa[x]==x?x:fa[x]=find(fa[x]);
}
int main(){
scanf("%d",&n);
for(int i=;i<=n;i++) fa[i]=i;
for(int i=;i<=n;i++){
for(int j=;j<=n;j++){
int x;
scanf("%d",&x);
if(x){
e[++cnt].x=i;e[cnt].y=j;e[cnt].v=x;
}
}
}
scanf("%d",&m);
for(int i=;i<=m;i++){
int x,y;
scanf("%d%d",&x,&y);
int fx=find(x),fy=find(y);
if(fx!=fy) fa[fy]=fx;
}
sort(e+,e+cnt+,cmp);
for(int i=;i<=cnt;i++){
int fx=find(e[i].x),fy=find(e[i].y);
if(fx!=fy){
fa[fy]=fx;
tot+=e[i].v;
k++;
}
//if(k==n-m-1) break;不能这样写(并查集原理理解错了)
if(k==n-) break;//是mst,这里就不能改
}
printf("%d\n",tot);
return ;
}

最新文章

  1. java 测试:iterator foreach for 三种迭代方式哪种更快?
  2. (翻译)Angular.js为什么如此火呢?
  3. [已解决]Teamviewer VPN 连接上,但无法ping
  4. java的安装环境配置详细步骤
  5. C语言(1)
  6. js获取节点的DOM操作
  7. android 给空白包签名
  8. Unity3D 游戏计时功能实现
  9. css 时钟
  10. lines---hdu5124(离散化+数组模拟)
  11. 问题:关于一个坛友的html布局实现
  12. [Audio processing] wav音频文件读取int和double数组的关系
  13. ASP.NET - TreeView控件,只操作最后一级节点
  14. drupal7 boost模块为登录用户提供缓存
  15. JS——控制标记的样式
  16. iOS Swift--UIImageView UIImage
  17. 【转载】CentOS 7部署ASP.NET Core应用程序
  18. Django——用户认证和判断用户是否登录
  19. Testing - 软件测试知识梳理 - 测试用例
  20. js 消息框

热门文章

  1. CvArr、Mat、CvMat、IplImage、BYTE转换
  2. mysql update 的时候使用left join和where语句
  3. mysql关于访问权限以及root密码修改
  4. Elasticsearch教程(七) elasticsearch Insert 插入数据(Java)
  5. 如何使用CodeSmith批量生成代码
  6. 从程序员到asp.net架构师转变[转]
  7. JDBC性能优化方案
  8. react-native 项目实战 -- 新闻客户端(6) -- 完善ListView头部视图
  9. 关于XSuperMES项目使用的PDF框架
  10. 每天一个JavaScript实例-展示设置和获取CSS样式设置