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

  • 相关阅读:
    数据结构与算法10 微服务接口的鉴权和限流 [MD]
    .Net开发环境配置[OS/IIS/VS...]
    一、单件模式
    正则表达式调试器1.1
    C#2.0新特性系列文章转载
    巧用VS2005解决VS2005网站发布不便问题
    配置VS2005,加速VS2005运行速度
    转载:ASP.NET运行机制 和 图片盗链问题
    ASP.NET页面提前处理问题
    关于NTLM认证的python和.NET实现
  • 原文地址:https://www.cnblogs.com/BoilTask/p/12569436.html
Copyright © 2011-2022 走看看