Agri-Net
Time Limit: 1000MS | Memory Limit: 10000K | |
Total Submissions: 41940 | Accepted: 17103 |
Description
Farmer John has been elected mayor of his town! One of his campaign promises was to bring internet connectivity to all farms in the area. He needs your help, of course.
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.
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.
Input
The input includes several cases. For each case, the first line contains the number of farms, N (3 <= N <= 100). The following lines contain the N x N conectivity matrix, where each element shows the distance from on farm to another. Logically, they are N lines
of N space-separated integers. Physically, they are limited in length to 80 characters, so some lines continue onto others. Of course, the diagonal will be 0, since the distance from farm i to itself is not interesting for this problem.
Output
For each case, output a single integer length that is the sum of the minimum length of fiber required to connect the entire set of farms.
Sample Input
4 0 4 9 21 4 0 8 17 9 8 0 16 21 17 16 0
Sample Output
28
kruskal求最小生成树
按边的大小排序,从小到大,如果结点没有相连则相连(加入并查集)操作结点数-1次
#include <cstdio> #include <cstring> #include <algorithm> int fa[10010]; using namespace std; struct edge { int u,v,w; }e[205*205]; bool cmp(edge a,edge b) { if (a.w>b.w) return false; return true; } int find(int x) { if (fa[x]==x) return x; fa[x]=find(fa[x]); return fa[x]; } int main() { int i,j,m,n,k,u,v,w,cnt,ans; while (scanf("%d",&n)!=EOF) { cnt=0; for (i=1;i<=n;i++) fa[i]=i; for (i=1;i<=n;i++) for (j=1;j<=n;j++) { scanf("%d",&w); if (i>j) { e[cnt].u=i; e[cnt].v=j; e[cnt].w=w; cnt++; } } sort(e,e+cnt,cmp); k=0;i=0;ans=0; while (k<(n-1)) { if (i==cnt) break; if (find(e[i].u)!=find(e[i].v)) { k++; ans+=e[i].w; fa[find(e[i].u)]=find(e[i].v); } i++; } printf("%d\n",ans); } return 0; }