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

  1. 3
  2. 0 990 692
  3. 990 0 179
  4. 692 179 0
  5. 1
  6. 1 2

Sample Output

  1. 179

最小生成树....先建图,之后再处理相同地点....只需要遍历一半就行....

时间超限:

  1. #include <vector>
  2. #include <map>
  3. #include <set>
  4. #include <algorithm>
  5. #include <iostream>
  6. #include <cstdio>
  7. #include <cmath>
  8. #include <cstdlib>
  9. #include <string>
  10. #include <cstring>
  11. #include <queue>
  12. using namespace std;
  13. #define INF 0x3f3f3f3f
  14. #define MAX 1000000
  15.  
  16. int n,ans;
  17. int dis[],vis[],mp[][];
  18.  
  19. void prim()
  20. {
  21. memset(vis,,sizeof(vis));
  22. memset(dis,INF,sizeof(dis));
  23. dis[]=;ans=;dis[]=INF;
  24. while(true){
  25. int m=;
  26. for(int i=; i<=n; i++){
  27. if(!vis[i] && (dis[i]<dis[m]))
  28. m=i;
  29. }
  30. if(m==)
  31. break;
  32. vis[m]=;
  33. ans+=dis[m];
  34. for(int i=; i<=n; i++)
  35. dis[i]=min(dis[i],mp[m][i]);
  36. }
  37. }
  38.  
  39. int main()
  40. {
  41. int x,a,b;
  42. while(scanf("%d",&n)){
  43. if(n==)
  44. break;
  45. for(int i=; i<=n; i++){
  46. for(int j=; j<=n; j++){
  47. scanf("%d",&mp[i][j]);
  48. }
  49. }
  50. scanf("%d",&x);
  51. while(x--){
  52. scanf("%d%d",&a,&b);
  53. mp[a][b]=mp[b][a]=;
  54. }
  55. prim();
  56. printf("%d\n",ans);
  57. }
  58.  
  59. }

AC代码:

  1. #include <vector>
  2. #include <map>
  3. #include <set>
  4. #include <algorithm>
  5. #include <iostream>
  6. #include <cstdio>
  7. #include <cmath>
  8. #include <cstdlib>
  9. #include <string>
  10. #include <cstring>
  11. #include <queue>
  12. using namespace std;
  13. #define INF 0x3f3f3f3f
  14. #define MAX 1000000
  15.  
  16. int n,ans;
  17. int dis[],vis[],mp[][];
  18.  
  19. void prim()
  20. {
  21. memset(vis,,sizeof(vis));
  22. memset(dis,INF,sizeof(dis));
  23. dis[]=;
  24. ans=;
  25. dis[]=INF;
  26. while(true){
  27. int m=;
  28. for(int i=; i<=n; i++){
  29. if(!vis[i] && dis[i]<dis[m])
  30. m=i;
  31. }
  32. if(m==)
  33. break;
  34. vis[m]=;
  35. ans+=dis[m];
  36. for(int i=; i<=n; i++)
  37. dis[i]=min(dis[i],mp[m][i]);
  38. }
  39. }
  40.  
  41. int main()
  42. {
  43. int x,a,b;
  44. while(scanf("%d",&n)==){
  45. for(int i=; i<=n; i++){
  46. for(int j=; j<=n; j++){
  47. scanf("%d",&mp[i][j]);
  48. }
  49. }
  50. scanf("%d",&x);
  51. while(x--){
  52. scanf("%d%d",&a,&b);
  53. mp[a][b]=mp[b][a]=;
  54. }
  55. prim();
  56. printf("%d\n",ans);
  57. }
  58.  
  59. }

NSOJ Constructing Roads(图论)的更多相关文章

  1. Constructing Roads——F

    F. Constructing Roads There are N villages, which are numbered from 1 to N, and you should build som ...

  2. Constructing Roads In JGShining's Kingdom(HDU1025)(LCS序列的变行)

    Constructing Roads In JGShining's Kingdom  HDU1025 题目主要理解要用LCS进行求解! 并且一般的求法会超时!!要用二分!!! 最后蛋疼的是输出格式的注 ...

  3. [ACM] hdu 1025 Constructing Roads In JGShining's Kingdom (最长递增子序列,lower_bound使用)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

  4. HDU 1102 Constructing Roads

    Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Other ...

  5. Constructing Roads (MST)

    Constructing Roads Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u ...

  6. HDU 1025 Constructing Roads In JGShining's Kingdom(二维LIS)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

  7. hdu--(1025)Constructing Roads In JGShining's Kingdom(dp/LIS+二分)

    Constructing Roads In JGShining's Kingdom Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65 ...

  8. POJ 2421 Constructing Roads (最小生成树)

    Constructing Roads Time Limit:2000MS     Memory Limit:65536KB     64bit IO Format:%I64d & %I64u ...

  9. hdu 1102 Constructing Roads Kruscal

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1102 题意:这道题实际上和hdu 1242 Rescue 非常相似,改变了输入方式之后, 本题实际上更 ...

随机推荐

  1. .net机试题总结

    1.下面是一个由*号组成的4行倒三角形图案.要求:1.输入倒三角形的行数,行数的取值3-21之间,对于非法的行数,要求抛出提示“非法行数!”:2.在屏幕上打印这个指定了行数的倒三角形. ******* ...

  2. 冒泡排序java

    先对冒泡排序做一个简单的解释,然后是代码的实现.解释出资<java的数据结构和算法>,大家可以看看. 排序类: package com.dxx.order; public class Bu ...

  3. GCD code block

    在这里积累一些片段,由于备忘录. + (DRClass *)sharedDR{ //创建小黑.正常ap模式仅仅有一个小黑,so static DRClass *aDR = nil; static di ...

  4. malloc使用方法

    malloc使用方法 须要包括头文件: #include 'stdlib.h' 函数声明(函数原型): void *malloc(int size); 说明:malloc 向系统申请分配指定size个 ...

  5. JavaFX它ListView使用

    ListView它是通过同一控制非.在JavaFX在.ListView此外,它拥有非常丰富的功能.下列.让我们来看看如何使用ListView. ListView位于javafx.scene.contr ...

  6. 华为上机题汇总----java

        以下华为上机题目都是网上整理得到的,代码都是自己调试过的,由于网上java答案较少,欢迎大家批评指正,也希望对准备华为上机的童鞋们有一点点帮助.在练习的过程中成长,加油!~~  第1题:输入字 ...

  7. Apple Watch 2.0 数据通讯

    经常会碰到Watch app和WatchKit extension需要访问同一个文件.比如,使用一个自定义的字体,播放多媒体文件.有两种方法完成这个任务. 设计的时候,每个包放一份文件.它们分别访问自 ...

  8. redis源代码解读之内存管理————zmalloc文件

    本文章主要记录本人在看redis源代码的一些理解和想法.由于功力有限,肯定会出现故障,所以.希望高手给出指正. 第一篇就是内存相关的介绍.由于我喜欢先看一些组件的东西,再看总体的流程. 先上一下代码吧 ...

  9. all about AIX MPIO

    Multipath  I/O (多路径)   在计算机存储技术里,多路径提供了容错和性能提高,在计算机系统里CPU有多条物理路径通道,块存储设备通过总线,控制器,交换设备以及桥接设备来连接.     ...

  10. 【iOS】Web Color 的 Swift 实现

    用Swift语言重写Web Color这个类. 这次是用函数实现的,感觉也非常简洁.眼下(2014.6.28) Xcode 6的方法提示还不健全,就仅仅实现了用颜色名字创建颜色的功能. 最新代码&am ...