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

  • 相关阅读:
    Java实现第九届蓝桥杯第几个幸运数字
    Java实现第九届蓝桥杯第几个幸运数字
    Java实现第九届蓝桥杯字母阵列
    Java实现第九届蓝桥杯字母阵列
    为什么mysql设置了密码之后,本地还可以直接访问,不需要输入密码就可以登录数据库了?
    centos7破解mariadb密码
    centos7使用无线wifi连接
    centos7中firewall防火墙命令详解
    CentOS 7 为firewalld添加开放端口及相关资料
    Mysql中较为复杂的分组统计去重复值
  • 原文地址:https://www.cnblogs.com/BoilTask/p/12569436.html
Copyright © 2011-2022 走看看