POJ 2485 Highways(Prim中最大边)

来源:互联网 发布:手机接收卫星电视软件 编辑:程序博客网 时间:2024/06/05 07:29

Description

The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has no public highways. So the traffic is difficult in Flatopia. The Flatopian government is aware of this problem. They're planning to build some highways so that it will be possible to drive between any pair of towns without leaving the highway system.

Flatopian towns are numbered from 1 to N. Each highway connects exactly two towns. All highways follow straight lines. All highways can be used in both directions. Highways can freely cross each other, but a driver can only switch between highways at a town that is located at the end of both highways.

The Flatopian government wants to minimize the length of the longest highway to be built. However, they want to guarantee that every town is highway-reachable from every other town.

Input

The first line of input is an integer T, which tells how many test cases followed.
The first line of each case is an integer N (3 <= N <= 500), 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, 65536]) between village i and village j. There is an empty line after each test case.

Output

For each test case, you should output a line contains an integer, which is the length of the longest road to be built such that all the villages are connected, and this value is minimum.

Sample Input

130 990 692990 0 179692 179 0

Sample Output

692 

题目大意:描述 :有个城市叫做H市。其中有很多个村庄,村庄之间通信基本靠吼,交通基本靠走,很不方便。这个市长知道了这个情况,为了替市民着想,决定修建高铁。每修建一米花费1美元。现在市长请了最著名的工程师来修建高铁,自然这个工程师会让修建高铁的费用最少。不幸的是,在修建了高铁之后就病逝了。现在市长希望知道在修建完成的这些高铁路中最长的一段高铁路花费了多少美元,他请你来帮助他,如果你计算正确,市长将会送你一辆兰博基尼。

输入:

第一行一个数T,表示接下来有多少组数据。
接下来每组测试数据的第一行有一个数N(3<=N<=500),表示村庄数目。然后是一个二维数组,
第i行第j列表示第i个村庄到第j个村庄的距离。

输出:
只有一个数,输出市长希望知道的已经修成的高铁中最长的路花了多少钱。

解题思路:这是一道最小生成树,不过求的不是最小生成树的权值,而是最小生成树中的最大边。然而我们都知道,如果求的是前者,则需要定义一个sum来累加每次得到的最小边,然而既然是求后者,所以就不用了,同最基础的生成树一样,用dist[ ],储存最小生成树的各个边的权值,最后比较求出此数组中最大的就可以了。

具体代码:#include <stdio.h>#include <string.h>#define INF 0x3f3f3f3f#define Min(a,b) a>b?b:aint map[2000][2000];int used[2000];int dist[2000];int N;void Prim(){memset(used,0,sizeof(used));memset(dist,INF,sizeof(dist));dist[1]=0;while(1){int u=-1;for(int i=1;i<=N;i++)if(used[i]==0 && (u==-1 || dist[i]<dist[u]))u=i;if(u==-1)break;used[u]=1;for(int j=1;j<=N;j++)if(used[j]==0 && map[u][j]<dist[j])dist[j]=map[u][j];}}int main(){int T,i,j;scanf("%d",&T);while(T--){scanf("%d",&N);memset(map,INF,sizeof(map));for(i=1;i<=N;i++)for(j=1;j<=N;j++)scanf("%d",&map[i][j]);Prim();int max=0;for(i=1;i<=N;i++)if(dist[i]>max)max=dist[i];printf("%d\n",max);}return 0;}


0 0
原创粉丝点击