POJ 2485 Highways (Prime)

来源:互联网 发布:羽绒服 知乎 编辑:程序博客网 时间:2024/05/02 03:11
/*POJ 2485 Highways
Highways
Time Limit: 1000MS  Memory Limit: 65536K
Total Submissions: 27341  Accepted: 12484


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


1


3
0 990 692
990 0 179
692 179 0


Sample Output


692


Hint
Huge input,scanf is recommended.




描述 :有个城市叫做H市。其中有很多个村庄,村庄之间通信基本靠吼,交通基本靠走,很不方便。
这个市长知道了这个情况,为了替市民着想,决定修建高铁。每修建一米花费1美元。
现在市长请了最著名的工程师来修建高铁,自然这个工程师会让修建高铁的费用最少。
不幸的是,在修建了高铁之后就病逝了。现在市长希望知道在修建完成的这些高铁路中最长的一段高铁路花费了多少美元,
他请你来帮助他,如果你计算正确,市长将会送你一辆兰博基尼。
输入:
第一行一个数T,表示接下来有多少组数据。
接下来每组测试数据的第一行有一个数N(3<=N<=500),表示村庄数目。
然后是一个二维数组,第i行第j列表示第i个村庄到第j个村庄的距离。
输出:
只有一个数,输出市长希望知道的已经修成的高铁中最长的路花了多少钱。

*/


思路**prime算法小变形,基本照抄模板,,理解模板就好。这里是找最大路径里面最长的那个路径

#include <iostream>#include <cstdio>using namespace std;const int maxv = 550;const int INF = 0x3f3f3f3f;int V;int cost[maxv][maxv];int mincost[maxv];//更新数组 bool used[maxv];int prime(){for(int i=0;i<V;i++){mincost[i] = INF;used[i] = false;}mincost[0] = 0;//从0号节点开始; int ans = 0;while(true){int v = -1;for(int u = 0;u<V;u++){//找到没被访问过得节点的mincost[]的最小的顶点 if(!used[u]&&(v==-1||mincost[u] < mincost[v]))v = u;}if(v==-1)//如果所有的节点都被访问过,及结束 break;used[v] = true;ans = max(ans,mincost[v]);//更新最长路径 for(int u=0;u<V;u++){mincost[u] = min(mincost[u],cost[v][u]);//更新mincost[];}} return ans;}int main(){int T;scanf("%d",&T);while(T--){scanf("%d",&V);for(int i=0;i<V;i++){for(int j=0;j<V;j++)scanf("%d",&cost[i][j]);}printf("%d\n",prime());}return 0;}

心已累

0 0
原创粉丝点击