国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

POJ 1258 Agri-Net (最短路徑 prim)

2019-11-06 06:28:52
字體:
來源:轉載
供稿:網友
Agri-Net
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 55952 Accepted: 23187

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
#include<stdio.h>#include<string.h>#include<algorithm>#include<iostream>using namespace std;#define INFINITY 65535int T;int map[105][105],d[105],vis[105];void prim(){	int i,j,p,q;	for(i=1;i<=T;i++)	{		d[i]=map[1][i];		vis[i]=0;	}	for(i=1;i<=T;i++)	{		p=INFINITY;	for(j=1;j<=T;j++)		if(!vis[j]&&d[j]<p)		{			p=d[j];			q=j;		}		vis[q]=1;		for(j=1;j<=T;j++)		{			if(!vis[j]&&d[j]>map[q][j])			d[j]=map[q][j];		}				}		for(d[0]=0,i=1;i<=T;i++)	d[0]+=d[i];	printf("%d/n",d[0]);	} int main() {	while(scanf("%d",&T)!=EOF)	{		memset(vis,0,sizeof(vis));		memset(d,0,sizeof(d));		for(int i=1;i<=T;i++)		for(int j=1;j<=T;j++)		{		    scanf("%d",&map[i][j]);		}		prim();	}	return 0;}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 红原县| 鱼台县| 旬阳县| 谷城县| 镇巴县| 望都县| 壶关县| 西城区| 崇信县| 周口市| 商水县| 东台市| 新巴尔虎右旗| 香格里拉县| 通辽市| 万山特区| 中江县| 禄劝| 克拉玛依市| 肥城市| 佛学| 固安县| 金溪县| 正阳县| 岗巴县| 鄯善县| 东乌| 四平市| 和林格尔县| 壤塘县| 绍兴县| 安徽省| 镇雄县| 张家港市| 深州市| 余干县| 吉林省| 巴彦淖尔市| 奉化市| 阿合奇县| 宁远县|