zoukankan      html  css  js  c++  java
  • POJ 2421 有一条连通下的最小生成树

    Constructing Roads
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 22440   Accepted: 9588

    Description

    There are N villages, which are numbered from 1 to N, and you should build some roads such that every two villages can connect to each other. We say two village A and B are connected, if and only if there is a road between A and B, or there exists a village C such that there is a road between A and C, and C and B are connected.

    We know that there are already some roads between some villages and your job is the build some roads such that all the villages are connect and the length of all the roads built is minimum.

    Input

    The first line is an integer N (3 <= N <= 100), 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, 1000]) between village i and village j.

    Then there is an integer Q (0 <= Q <= N * (N + 1) / 2). Then come Q lines, each line contains two integers a and b (1 <= a < b <= N), which means the road between village a and village b has been built.

    Output

    You should output a line contains an integer, which is the length of all the roads to be built such that all the villages are connected, and this value is minimum.

    Sample Input

    3
    0 990 692
    990 0 179
    692 179 0
    1
    1 2
    

    Sample Output

    179
    
    
    #include <iostream>
    #include <cstdio>
    #include <algorithm>
    #include <string.h>
    #include <climits>
    using namespace std;
    
    
    const int N = 110;
    int father[N];
    struct edge{
        int lp,rp,value;
    }ee[N*N];
    int map[N][N],flag[N][N],numedge,n;
    bool cmp(edge a,edge b){
        return a.value < b.value;
    }
    
    //并查集模板
    int find(int x){
        if(father[x] == x)
            return father[x];
           else
                father[x]=find(father[x]);
        return father[x];
    }
    int merge(int x,int y){
        int fx = find(x);
        int fy = find(y);
        if(fx!=fy)
        {
          father[fy] = fx;
          return 1;
        }
        else
            return 0;  //要么bool类型,返回-1也是ture,只有return 0 才是false
    
    }
    
    //克鲁斯卡尔算法
    int kruskal(){
        sort(ee,ee+numedge,cmp);
        for(int i = 1; i <= n; ++i)
            father[i] = i;
        int sum = 0;
        for(int i = 0; i < numedge; ++i){
            int lx = ee[i].lp;
            int rx = ee[i].rp;
            if(merge(lx,rx)){
                sum += ee[i].value;
            }
        }
        return sum;
    }
    int main(){
        //freopen("1.txt","r",stdin);
        while(scanf("%d",&n) != EOF){
          memset(flag,0,sizeof(flag));
            for(int i = 1; i <= n; ++i){
              for(int j = 1; j <= n; ++j)
                  scanf("%d",&map[i][j]);
            }
            int m,x,y;
            scanf("%d",&m);
            while(m--){
              scanf("%d%d",&x,&y);
              flag[x][y] = 1;
            }
            numedge = 0;
            //无向图,只用放1-2,1-3,2-3
            for(int i = 1; i < n; ++i){
                for(int j = i + 1; j <= n; j++){
                    if(flag[i][j]){
                        ee[numedge].lp = i;
                        ee[numedge].rp = j;
                        ee[numedge].value = 0;
                        numedge++;
                    }
                    else{
                        ee[numedge].lp = i;
                        ee[numedge].rp = j;
                        ee[numedge].value = map[i][j];
                        numedge++;
                    }
                }
            }
            int ans = kruskal();
            printf("%d
    ",ans);
        }
        return 0;
    }
    

    坑爹,开始在并查集中找到共同根后应该返回false,自己写成return -1,返回的还是true,找错找了半天

  • 相关阅读:
    BZOJ3149 CTSC2013 复原 搜索
    BZOJ5016 SNOI2017 一个简单的询问 莫队、前缀和、容斥
    THUWC2019-1:Reach out
    Luogu4630 APIO2018 Duathlon 圆方树、树形DP
    Luogu4606 SDOI2018 战略游戏 圆方树、虚树、链并
    BZOJ3720 Gty的妹子树 询问分块、主席树
    CF809E Surprise me! 莫比乌斯反演、虚树
    LOJ2542 PKUWC2018 随机游走 min-max容斥、树上高斯消元、高维前缀和、期望
    LOJ2541 PKUWC2018 猎人杀 期望、容斥、生成函数、分治FFT
    CF797F Mice and Holes 贪心、栈维护DP
  • 原文地址:https://www.cnblogs.com/zhangmingzhao/p/7256410.html
Copyright © 2011-2022 走看看