POJ 2485 Highways

來源:互聯網
上載者:User

標籤:poj   acm   

Highways
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 21315   Accepted: 9822

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

130 990 692990 0 179692 179 0

Sample Output

692


最小產生樹的計算,很高興,第一次寫這種題,一遍A。



AC代碼如下:



#include<iostream>#include<cstdio>#include<algorithm>using namespace std;struct H{    int l,r,le;}map[300000];int f[505];int find(int a){    return f[a]==a ? f[a] :find (f[a]);}bool cmp(H a,H b){    return a.le<b.le;}int main(){    int t;    int n;    int i,j;    int a,tt;    scanf("%d",&t);    while(t--)    {        tt=0;        scanf("%d",&n);        for(i=1;i<=n;i++)            f[i]=i;        for(i=1;i<=n;i++)            for(j=1;j<=n;j++)        {            scanf("%d",&a);            if(j<=i)            {                map[tt].l=i;                map[tt].r=j;                map[tt].le=a;                tt++;//統計邊權和端點            }        }        sort(map,map+tt,cmp);        int ans=0,max=0;        for(i=0;i<tt;i++)        {            int xx,yy;            xx=find(map[i].l);            yy=find(map[i].r);//並查集            if(xx!=yy)            {                f[xx]=yy;                ans+=map[i].le;                if(max<map[i].le)                    max=map[i].le;//找到最大的一段            }        }        printf("%d\n",max);    }    return 0;}




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.