POJ 2421 有一条连通下的最小生成树

来源:互联网 发布:网络域名注册查询 编辑:程序博客网 时间:2024/05/22 16:48
Constructing Roads
Time Limit: 2000MS Memory Limit: 65536KTotal 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

30 990 692990 0 179692 179 011 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\n",ans);    }    return 0;}

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

0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 葫芦干了有黑点怎么办 单位费用发票丢失了怎么办 1岁宝宝太调皮了怎么办 孩子和同学打架家长该怎么办 孩子被大人打了怎么办 小孩不跟大人沟通怎么办 2岁小朋友爱动手怎么办 小班爱动手的小朋友怎么办 宝宝对小朋友不友好爱动手怎么办 小孩子上幼儿园爱打人怎么办 小孩被别人打了怎么办 1岁幼儿爱打人怎么办 作为幼小朋友打人老师怎么办 2岁半小朋友喜欢打人怎么办 2岁宝宝脾气大怎么办 4月小孩爱动怎么办 一岁宝宝老打人怎么办 1岁宝宝爱打人怎么办 3岁宝宝喜欢抓人怎么办 宝宝喜欢打人怎么办2岁 1岁宝宝动手打人怎么办 孩子总打人总哭怎么办 小孩出现夜惊家人怎么办 小孩不原跟家人沟通怎么办 孩子字写得难看怎么办 孩子上一年级不认识字怎么办 二年级孩子语文差怎么办 孩子二年级语文成绩差怎么办 孩子小学二年级语文差怎么办 二年级孩子语文理解能力差怎么办 深圳租房被坑了怎么办 小鸣单车押金退不了怎么办 联想台式一体机忘记密码怎么办 ps直线工具变成箭头了怎么办 笔记本图形处理速度慢怎么办 微信语音发不出去怎么办 ps里的图层锁定怎么办 ps图层丢失了怎么办 PS标题画面太小怎么办 轮胎蹭掉一块皮怎么办 吃香蕉吃的胃难受怎么办