zoukankan      html  css  js  c++  java
  • Poj 1751 Highways

    题目链接

    Highways

    Time Limit: 1000MS Memory Limit: 10000K
    Total Submissions: 21476 Accepted: 6337 Special Judge
    Description

    The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a very poor system of public highways. The Flatopian government is aware of this problem and has already constructed a number of highways connecting some of the most important towns. However, there are still some towns that you can't reach via a highway. It is necessary to build more 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 and town i has a position given by the Cartesian coordinates (xi, yi). Each highway connects exaclty two towns. All highways (both the original ones and the ones that are to be built) follow straight lines, and thus their length is equal to Cartesian distance between towns. 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 cost of building new highways. However, they want to guarantee that every town is highway-reachable from every other town. Since Flatopia is so flat, the cost of a highway is always proportional to its length. Thus, the least expensive highway system will be the one that minimizes the total highways length.

    Input

    The input consists of two parts. The first part describes all towns in the country, and the second part describes all of the highways that have already been built.

    The first line of the input file contains a single integer N (1 <= N <= 750), representing the number of towns. The next N lines each contain two integers, xi and yi separated by a space. These values give the coordinates of ith town (for i from 1 to N). Coordinates will have an absolute value no greater than 10000. Every town has a unique location.

    The next line contains a single integer M (0 <= M <= 1000), representing the number of existing highways. The next M lines each contain a pair of integers separated by a space. These two integers give a pair of town numbers which are already connected by a highway. Each pair of towns is connected by at most one highway.

    Output

    Write to the output a single line for each new highway that should be built in order to connect all towns with minimal possible total length of new highways. Each highway should be presented by printing town numbers that this highway connects, separated by a space.

    If no new highways need to be built (all towns are already connected), then the output file should be created but it should be empty.

    Sample Input

    9
    1 5
    0 0
    3 2
    4 5
    5 1
    0 4
    5 2
    1 2
    5 3
    3
    1 3
    9 7
    1 2

    Sample Output

    1 6
    3 7
    4 9
    5 7
    8 3

    我就纳了闷了,while(Q--)有什么错,用就超时。还有在ZOJ上没有PE,直接WA。在ZOJ上可以用Kruskal做,在POJ用Kruskal就会MTE,可能需要优化吧,还是太菜。

    AC代码 Prim
    #include <algorithm>
    #include <iostream>
    #include <cmath>
    #include <vector>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    const int N=1010;
    const int inf=0x3f3f3f3f3f;
    int x[N],y[N],Next[N],e[N][N],dis[N];
    int n;
    void Prim(int st){
        for(int i=1;i<=n;i++){
            dis[i]=e[st][i];
            Next[i]=st;
        }
        Next[st]=-1;
        int minn,u;
        for(int i=1;i<n;i++){
            minn=inf;u=-1;
            for(int j=1;j<=n;j++){
                if(minn>dis[j]&&Next[j]!=-1){
                    minn=dis[j];
                    u=j;
                }
            }
            if(u!=-1){
                if(minn!=0){
                    printf("%d %d
    ",Next[u],u);
                }
                Next[u]=-1;
            }
            for(int j=1;j<=n;j++){
                if(dis[j]>e[u][j]&&Next[j]!=-1) {
                    dis[j]=e[u][j];
                    Next[j]=u;
                }
            }
        }
    }
    int main(){
        int t,Q,a,b;
        while(~scanf("%d",&n)){
    
            for(int i=1;i<=n;i++){
                scanf("%d%d",&x[i],&y[i]);
            }
            for(int i=1;i<=n;i++){
                for(int j=i+1;j<=n;j++){
                    e[i][j]=e[j][i]=(x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]);
                }
            }
            scanf("%d",&Q);
            for(int i=1;i<=Q;i++){
                scanf("%d%d",&a,&b);
                e[a][b]=e[b][a]=0;
            }
            Prim(1);
            printf("
    ");
        }
        return 0;
    }
    
    

    ZOJ过的Kruskal

    #include <algorithm>
    #include <iostream>
    #include <math.h>
    #include <vector>
    #include <cstdio>
    using namespace std;
    const int N=1010;
    struct node{
        int u,v;
        double d;
    }q[N*N];
    double x[N],y[N];
    int pre[N];
    int n,cnt;
    double distance(int i,int j){
        return sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
    }
    void init(){
        for(int i=1;i<=n;i++){
            pre[i]=i;
        }
        cnt=0;
    }
    int Find(int x){
        if(x!=pre[x]) pre[x]=Find(pre[x]);
        return pre[x];
    }
    void join(int x,int y){
        int tx=Find(x);
        int ty=Find(y);
        if(tx!=ty){
            pre[ty]=tx;
        }
    }
    bool cmp(node a,node b){
        return a.d<b.d;
    }
    void Kru(){
        sort(q,q+cnt,cmp);
        for(int i=0;i<cnt;i++){
            if(Find(q[i].u)!=Find(q[i].v)){
                join(q[i].u,q[i].v);
                printf("%d %d
    ",q[i].u,q[i].v);
            }
        }
    }
    int main(){
        int t,Q,a,b;
        scanf("%d",&t);
        while(t--){
            scanf("%d",&n);
            init();
            for(int i=1;i<=n;i++){
                scanf("%lf%lf",&x[i],&y[i]);
            }
            for(int i=1;i<n;i++){
                for(int j=i+1;j<=n;j++){
                    q[cnt].u=i;
                    q[cnt].v=j;
                    q[cnt++].d=distance(i,j);
                }
            }
            scanf("%d",&Q);
            while(Q--){
                scanf("%d%d",&a,&b);
                join(a,b);
            }
    
            Kru();
            if(t!=0)printf("
    ");
    
        }
        return 0;
    }
    
    
  • 相关阅读:
    Hash表解题之大数据查找
    数据结构与算法之字典树解题
    oracle存储过程学习
    mq常见问题
    通过反射构造对象
    平衡二叉树
    LinkList源码
    ArrayList源码
    JVM参数调优
    MyBatis源码图
  • 原文地址:https://www.cnblogs.com/kun-/p/9714326.html
Copyright © 2011-2022 走看看