洛谷 P1396 营救

2019-09-02 09:40:57来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

洛谷 P1396 营救

目录

  • 题目
  • 思路
  • $Code$

题目

P1396 营救

思路

并查集,将读入的边按拥挤度从小到大排序,一开始$s$和$t$在不同的集合中,然后从小到大枚举每一条边,如果这条边的起点与终点不在同一集合内(不连通),就合并,每合并一次判断$s$和$t$是否在同一集合内(连通),如果$s$和$t$连通了,当前边的拥挤度就是答案。

$Code$

#include<iostream>
#include<cstring>
#include<string>
#include<cstdio>
#include<algorithm>
#define MAXN 10001
using namespace std;
int n,m,s,t,fa[MAXN],r[MAXN];
struct info{
    int u,v,c;
}a[MAXN<<2];
bool cmp(info a,info b){
    return a.c<b.c;
}
int find(int x){
    return fa[x]==x?x:fa[x]=find(fa[x]);
}
void Union(int x,int y){
    int rootx=find(x),rooty=find(y);
    if(rootx==rooty) return;
    if(r[rootx]>r[rooty]) fa[rooty]=rootx;
    else if(r[rooty]>r[rootx]) fa[rootx]=rooty;
    else{
        fa[rootx]=rooty;
        r[rooty]++;
    }
}
inline int read(){
    int x=0;bool f=0;char c=getchar();
    while(c<'0'||c>'9'){if(c=='-')f=!f;c=getchar();}
    while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();}
    return f?-x:x;
}

int main(){
    n=read(),m=read(),s=read(),t=read();
    for(int i=1;i<=n;++i) fa[i]=i;
    for(int i=1;i<=m;++i) a[i].u=read(),a[i].v=read(),a[i].c=read();
    sort(a+1,a+m+1,cmp);
    for(int i=1;i<=m;++i){
        if(find(a[i].u)!=find(a[i].v)){
            Union(a[i].u,a[i].v);
            if(find(s)==find(t)){
                printf("%d\n",a[i].c);
                return 0;
            }
        }
    }
    return 0;
}

原文链接:https://www.cnblogs.com/poi-bolg-poi/p/11440205.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:剑指offer65:矩阵中的路径(二维数组,二分查找)

下一篇:洛谷 P3144 [USACO16OPEN]关闭农场Closing the Farm_Silver