zoukankan      html  css  js  c++  java
  • 快速切题 poj 2485 Highways prim算法+堆 不完全优化 难度:0

    Highways
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 23033   Accepted: 10612

    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

    本来n就很小,没有这么做的必要,反而加重了插入负担

    #include <cstdio>
    #include <cstring>
    #include <queue>
    using namespace std;
    typedef pair<int ,int > P;
    int dis[600][600],n;
    bool vis[600];
    priority_queue<P,vector<P>,greater<P> >que;
    int prim(){
        int ans=0;
        memset(vis,0,sizeof(vis));
        vis[0]=true;
        while(!que.empty())que.pop();
        for(int i=1;i<n;i++)que.push(P(dis[0][i],i));
        int num=1;
        while(!que.empty()&&num<n){
            int tp=que.top().second;int d=que.top().first;que.pop();
          //  printf("tp %d dis %d
    ",tp,d);
            if(vis[tp])continue;
            vis[tp]=true;num++;ans=max(d,ans);
            for(int i=0;i<n;i++)if(!vis[i])que.push(P(dis[tp][i],i));
        }
        return ans;
    }
    int main(){
        int T;
        scanf("%d",&T);
        while(T--){
            scanf("%d",&n);
            for(int i=0;i<n;i++)for(int j=0;j<n;j++)scanf("%d",dis[i]+j);
            int ans=prim();
            printf("%d
    ",ans);
        }
        return 0;
    }
    

      

  • 相关阅读:
    那些年做过的外包 之 健康小屋
    Raize 重新编译
    解码淘口令?
    单品优惠券炸了
    如何共享联盟cookie
    阿里妈妈账号登录状态如何长时间保存
    delphi 图像旋转
    Canvas: Out of system resources
    关于&$地址传递的练习
    解决XAMPP中,MYSQL因修改my.ini后,无法启动的问题
  • 原文地址:https://www.cnblogs.com/xuesu/p/4093926.html
Copyright © 2011-2022 走看看