Constructing Roads(1102 最小生成树)

Constructing Roads

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 18256    Accepted Submission(s): 6970

Problem 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

 1 #include <cstdio>
 2 #include <algorithm>
 3 #include <iostream>
 4 #include <cstring>
 5 using namespace std;
 6 #define INF 0x3f3f3f3f
 7 int map[105][105];
 8 int n,q,a,b;
 9 int res;
10 int mincost[105];
11 int vis[105];
12 void prim()
13 {
14     mincost[1]=0;
15     while(true)
16     {
17         int v=-1;
18         int u;
19         for(u=1;u<=n;u++)
20         {
21             if(!vis[u]&&(v==-1||mincost[u]<mincost[v]))
22                 v=u;
23         }
24         if(v==-1)    break;
25         vis[v]=1;
26         res+=mincost[v];
27         for(u=1;u<=n;u++)
28             mincost[u]=min(map[v][u],mincost[u]);
29     }
30     return;
31 }
32 int main()
33 {
34     int i,j;
35     freopen("in.txt","r",stdin);
36     while(scanf("%d",&n)!=EOF)
37     {
38         res=0;
39         fill(mincost,mincost+105,INF);
40         memset(vis,0,sizeof(vis));
41         for(i=1;i<=n;i++)
42             for(j=1;j<=n;j++)
43                 scanf("%d",&map[i][j]);
44         scanf("%d",&q);
45         for(i=0;i<q;i++)
46         {
47             scanf("%d%d",&a,&b);
48             map[a][b]=map[b][a]=0;
49         }
50         prim();
51         printf("%d\n",res);
52     }
53 }
时间: 2024-10-25 20:10:32

Constructing Roads(1102 最小生成树)的相关文章

hdu oj1102 Constructing Roads(最小生成树)

Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13995    Accepted Submission(s): 5324 Problem Description There are N villages, which are numbered from 1 to N, and you should

POJ2421 &amp; HDU1102 Constructing Roads(最小生成树)

嘎唔!~又一次POJ过了HDU错了...不禁让我想起前两天的的Is it a tree?   orz..这次竟然错在HDU一定要是多组数据输入输出!(无力吐槽TT)..题目很简单,炒鸡水! 题意: 告诉你每个村庄之间的距离,和几组已经联通的村庄,求使所有村庄联通所要建的道路的最短距离. 很简单,用最小生成树的Prim算法,相当于邻接矩阵已知,把已联通的村庄之间的距离改为零即可. 附上AC代码: 1 #include <stdio.h> 2 #include <string.h> 3

HDU1102 Constructing Roads 【最小生成树Prim】

Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 13756    Accepted Submission(s): 5223 Problem Description There are N villages, which are numbered from 1 to N, and you should

hdu 1102 Constructing Roads (最小生成树)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1102 Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 14172    Accepted Submission(s): 5402 Problem Description There are N villa

HDU - 1102 - Constructing Roads (最小生成树--prim算法!!)

Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 14890    Accepted Submission(s): 5674 Problem Description There are N villages, which are numbered from 1 to N, and you should

hdu Constructing Roads(最小生成树,kuskal算法)

Constructing Roads Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 14569    Accepted Submission(s): 5530 Problem Description There are N villages, which are numbered from 1 to N, and you should

POJ 2421 Constructing Roads(最小生成树)

题意  在n个村庄之间修路使所有村庄连通  其中有些路已经修好了  求至少还需要修多长路 还是裸的最小生成树  修好的边权值为0就行咯 #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; const int N = 105, M = 10050; int par[N], n, m, mat[N][N]; int ans; str

Constructing Roads(最小生成树)

Constructing Roads Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 274 Accepted Submission(s): 172   Problem Description There are N villages, which are numbered from 1 to N, and you should build

HDU 1102 Constructing Roads (最小生成树+Kruskal算法入门)

[题目链接]:click here~~ [题目大意]:已知某几条道路已经修完,求全部道路要通路的最小花费 [解题思路]:基础的Kruskal算法了,按照边的权值从小到大排序一遍,符合条件加入到生成树中 代码: /* Author:HRW kruskal+并查集 */ #include <bits/stdc++.h> using namespace std; const int max_v=105; const int inf=0x3f3f3f3f; int u,v,n,m,a,b; int f

hdu1102 Constructing Roads (简单最小生成树Prim算法)

Problem 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