首页 > 代码库 > POJ 2485-Highways(最小生成树prim)
POJ 2485-Highways(最小生成树prim)
Highways
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 22433 | Accepted: 10341 |
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.
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.
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
果然是prim闯天下。。题意:求最小生成树中的最长边。
#include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <cctype> #include <cmath> #include <cstdlib> #include <vector> #include <queue> #include <set> #include <map> #include <list> using namespace std; const int INF=1<<27; const int maxn=5100; int ma[550][550]; int n; int prim() { int i,dis[maxn],vis[maxn],t=1; memset(vis,0,sizeof(vis)); vis[0]=1; for(i=1;i<n;i++) dis[i]=ma[0][i]; int ans=-INF; while(t++<n) { int k,Min=INF; for(i=1;i<n;i++) { if(Min>dis[i]&&!vis[i]) { Min=dis[i]; k=i; } } vis[k]=1; if(ans<Min) ans=Min; for(i=1;i<n;i++) if(dis[i]>ma[k][i]&&!vis[i]) dis[i]=ma[k][i]; } return ans; } int main() { ios::sync_with_stdio(false); int T; cin>>T; while(T--){ cin>>n; for(int i=0;i<n;i++) for(int j=0;j<n;j++) cin>>ma[i][j]; cout<<prim()<<endl; } return 0; }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。