Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 10676 | Accepted: 5009 |
Description
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
Output
Sample Input
130 990 692990 0 179692 179 0
Sample Output
692
Hint
#include <iostream> #include <cstdio> #include <cstring> #define MAX_VALUE 1e8 using namespace std; int main() { int T, N; int graph[501][501]; int d[501]; bool visit[501]; int longdist; scanf("%d", &T); for(int k=1; k<=T; k++) { scanf("%d",&N); for(int i=1; i<=N; i++) { for(int j=1; j<=N; j++) { scanf("%d",&graph[i][j]); } } memset(visit,0,sizeof(visit)); fill(d+1,d+N+1,MAX_VALUE); longdist=0; //prim int minNode, minValue; minNode=1; for(int p=1; p<=N; p++) { minValue=MAX_VALUE; d[1]=0; for(int i=1; i<=N; i++) { if(!visit[i] && d[i]<minValue) { minNode=i; minValue=d[i]; } } if(longdist<d[minNode]) { longdist=d[minNode]; } visit[minNode]=true; for(int i=1; i<=N; i++) { if(d[i]>graph[minNode][i]) { d[i]=graph[minNode][i]; } } } printf("%d\n",longdist); } return 0; }