zoukankan      html  css  js  c++  java
  • 【POJ】[2485]Highways

    Highways
    Time Limit: 1000MS   Memory Limit: 65536K

    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.


    给出一个n*n的列表

    第i行第j列代表 i - j 的距离

    求使n个点连通的总距离最小的路中最大的距离


    #include<stdio.h>
    #include<algorithm>
    using namespace std;
    struct edge {
    	int u,v,dis;
    } e[520*520];
    int par[520];
    int ran[520];
    int find(int m) {
    	if(m==par[m])
    		return m;
    	else
    		return par[m]=find(par[m]);
    }
    void unite(int x,int y) {
    	x=find(x);
    	y=find(y);
    	if(x==y)
    		return;
    	if(ran[x]<ran[y])
    		par[x]=y;
    	else {
    		par[y]=x;
    		if(ran[x]==ran[y])
    			ran[x]++;
    	}
    }
    bool cmp(edge A,edge B) {
    	return A.dis<B.dis;
    }
    int main() {
    	int T;
    	scanf("%d",&T);
    	while(T--) {
    		int N;
    		scanf("%d",&N);
    		for(int i=1; i<=N; i++) {
    			par[i]=i;
    			ran[i]=0;
    		}
    		int cnt=0;
    		for(int i=1; i<=N; i++) {
    			for(int j=1; j<=N; j++) {
    				scanf("%d",&e[cnt].dis);
    				e[cnt].u=i;
    				e[cnt++].v=j;
    
    			}
    		}
    		sort(e,e+cnt,cmp);
    		int res=0;
    		for(int i=0; i<cnt; i++) {
    			if(find(e[i].u)!=find(e[i].v)) {
    				if(res<e[i].dis)
    					res=e[i].dis;
    				unite(e[i].u,e[i].v);
    			}
    		}
    		printf("%d
    ",res);
    	}
    }

    题目地址:【POJ】[2485]Highways

  • 相关阅读:
    C#调试信息打印到输出窗口
    C#拼接SQL中in条件
    从图像到知识:深度神经网络实现图像理解的原理解析
    Cocoa Touch(六):App运行机制 NSRunLoop, KVC, KVO, Notification, ARC
    Cocoa Touch(五):网络请求 NSURLSession/AFNetworking, GCD, NSURLResquest
    JQuery:选择器、动画、AJAX请求
    Cocoa Touch(四): 多线程GCD, NSObject, NSThread, NSOperationQueue
    Socket、RPC通信实例,简单版本,仅供查阅
    Cocoa Touch(三):图形界面UIKit、Core Animation、Core Graphics
    Cocoa Touch(二):数据存储CoreData, NSKeyArchiver, NSOutputStream, NSUserDefaults
  • 原文地址:https://www.cnblogs.com/BoilTask/p/12569436.html
Copyright © 2011-2022 走看看