• POJ 2485 Highways (最小生成树)


    题目 :

    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

    题意:
    求生成最小生成树时 所有边中最长的边的长度

    思路:
    把prim算法中 sum+=minn 的部分改为 sum=max(sum,minn) 即可

    代码:
    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cmath>
    #include <string>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    const int inf=0x3f3f3f3f;
    const int maxn=550;
    int t,n,tmp;
    int mp[maxn][maxn],dis[maxn],vis[maxn];
    
    int main(){
        scanf("%d",&t);
        for(int id=1;id<=t;id++){
            scanf("%d",&n);
            memset(mp,0,sizeof(mp));
            memset(dis,0,sizeof(dis));
            memset(vis,0,sizeof(vis));
            for(int i=1;i<=n;i++){
                dis[i]=inf;
                for(int j=1;j<=n;j++){
                    scanf("%d",&mp[i][j]);
                }
            }
            for(int i=1;i<=n;i++){
                dis[i]=mp[1][i];
            }
            dis[1]=0;
            vis[1]=1;
            int sum=0;
            for(int i=1;i<=n;i++){
                tmp=inf;
                int minn=inf;
                for(int j=1;j<=n;j++){
                    if(vis[j]==0 && dis[j]<minn){
                        tmp=j;
                        minn=dis[j];
                    }
                }
                if(tmp==inf) break;
                vis[tmp]=1;
                sum=max(sum,minn);
                for(int j=1;j<=n;j++){
                    if(vis[j]==0 && dis[j]>mp[tmp][j])
                        dis[j]=mp[tmp][j];
                }
            }
            printf("%d
    ",sum);
        }
        return 0;
    }
  • 相关阅读:
    shell log
    Python:列出列表中所有元素的组合可能
    scrapy 停止爬虫
    shell split log by data
    mitmproxy 配置
    插件reres的使用,替换网站的js文件
    解决小米Note adb调试无法发现设备
    md5 计算文件一致性
    【Frida Hook 学习记录】Frida Hook Android 常用方法
    监控神器普罗米修斯Prometheus安装配置
  • 原文地址:https://www.cnblogs.com/whdsunny/p/10529392.html
Copyright © 2020-2023  润新知