Farmer John ordered a high speed connection for his farm and is going to share his connectivity with the other farmers. To minimize cost, he wants to lay the minimum amount of optical fiber to connect his farm to all the other farms.
Given a list of how much fiber it takes to connect each pair of farms, you must find the minimum amount of fiber needed to connect them all together. Each farm must connect to some other farm such that a packet can flow from any one farm to any other farm.
The distance between any two farms will not exceed 100,000.
4 0 4 9 21 4 0 8 17 9 8 0 16 21 17 16 0
28
code:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
int G[105][105];
int n;
struct node{
int from,to;
int len;
}farm[10005];
bool cmp(node a,node b){
return a.len < b.len;
}
int pre[105];
int Find(int x){
if(x == pre[x])
return x;
else return pre[x] = Find(pre[x]);
}
int Union(int x,int y){
int fx = Find(x),fy = Find(y);
if(fx == fy)
return 0;
else{
pre[fy] = fx;
return 1;
}
}
int main(){
while(~scanf("%d",&n)){
int i,j;
for(i = 0; i < 105; i++)
pre[i] = i;
int cnt = 0;
for(i = 0; i < n; i++){
for(j = 0; j < n; j++){
scanf("%d",&G[i][j]);
if(G[i][j] != 0){
farm[cnt].from = i;
farm[cnt].to = j;
farm[cnt++].len = G[i][j];
}
}
}
sort(farm,farm+cnt,cmp);
int num = 0;
int sum = 0;
for(i = 0; i < cnt; i++){
if(Union(farm[i].from,farm[i].to)){
sum += farm[i].len;
num++;
}
if(num == n-1)
break;
}
cout << sum << endl;
}
return 0;
}
4856


&spm=1001.2101.3001.11974&articleId=78734331&d=1&t=3&u=648e1ac52a8c4c4884c98cd7fd033324)

被折叠的 条评论
为什么被折叠?



