码迷,mamicode.com
首页 > 其他好文 > 详细

【并查集】关押罪犯

时间:2019-08-23 10:47:11      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:tar   return   struct   tps   tor   ret   get   ++   merge   

 

【并查集】关押罪犯

#include <bits/stdc++.h>

using namespace std;
const int maxn=20010;
const int maxm=100010;

struct node {
    int x,y,w;
    bool operator<(const node &b)const {
        return w>b.w;
    }
}a[maxm];

int f[maxn*2];
int n,m;

int getfa(int x) {
    return x == f[x] ? x : f[x] = getfa(f[x]);
}
void merge(int x,int y) {
    int xx = getfa(x), yy = getfa(y);
    if (xx != yy) f[xx] = y;
}
int main() {
    scanf("%d%d", &n, &m);
    for (int i = 1; i <= n * 2; i++) {
        f[i] = i;
    }
    for (int i = 1; i <= m; i++) {
        scanf("%d%d%d", &a[i].x, &a[i].y, &a[i].w);
    }
    sort(a + 1, a + 1 + m);
    for (int i = 1; i <= m; i++) {
        if (getfa(a[i].x) == getfa(a[i].y)) {
            printf("%d\n", a[i].w);
            return 0;
        }
        merge(a[i].x + n, a[i].y);
        merge(a[i].y + n, a[i].x);
    }
    printf("0\n");
}

  

【并查集】关押罪犯

标签:tar   return   struct   tps   tor   ret   get   ++   merge   

原文地址:https://www.cnblogs.com/Accpted/p/11398360.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!