poj 1258 Agri-Net prim算法 最小生成树

来源:互联网 发布:linux 硬盘同步 编辑:程序博客网 时间:2024/05/17 09:37

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.

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

40 4 9 214 0 8 179 8 0 1621 17 16 0

Sample Output

28

题意:有n个农场,已知这n个农场都互相相通,有一定的距离,现在每个农场需要装光纤,问怎么安装光纤能将所有农场都连通起来,并且要使光纤距离最小,输出安装光纤的总距离

分析:输入的形式是矩阵,已经给出了两点之间的距离,所以用prim算法,构造最小生成树。

#include<iostream>#include<cstdio>#include<cstring>#include<algorithm>using namespace std;const int maxn=110;const int INF=0x3f3f3f3f;int g[maxn][maxn],low[maxn];bool vis[maxn];int n;int prim(){    memset(vis,0,sizeof(vis));    vis[1]=true;    int result=0,pos=1;    for(int i=2;i<=n;i++)low[i]=g[pos][i];    for(int i=1;i<n;i++){        int minn=INF;        for(int j=1;j<=n;j++){            if(!vis[j]&&minn>low[j]){                minn=low[j];                pos=j;            }        }        result+=minn;        vis[pos]=true;        for(int j=1;j<=n;j++){            if(!vis[j]&&low[j]>g[pos][j]){                low[j]=g[pos][j];            }        }    }    return result;}int main(){    int v;    while(cin>>n){      //  memset(g,INF,sizeof(g));        for(int i=1;i<=n;i++)        for(int j=1;j<=n;j++){           scanf("%d",&g[i][j]);        }        cout<<prim()<<endl;    }    return 0;}



0 0
原创粉丝点击