首页 > 其他 > 详细

BZOJ 1083 [SCOI2005]繁忙的都市

时间:2017-09-18 09:29:26      阅读:255      评论:0      收藏:0      [点我收藏+]

最小生成树模板。

然后写并查集写了个fa[x]==find(fa[x]),RE。。。

十分难受

技术分享
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
#include<vector>
typedef long long LL; 
const int maxn=40000+299;
using namespace std;
int n,m,u,v,w,fa[maxn],tot,ans;
struct edge {
    int u,v,w;
   friend bool operator <(const edge&a,const edge &b) {
        return a.w<b.w;
    }
}e[maxn];
int find(int x) {return x==fa[x]?x:fa[x]=find(fa[x]); }
int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++) 
    scanf("%d%d%d",&e[i].u,&e[i].v,&e[i].w);
    sort(e+1,e+m+1);
    for(int i=1;i<=n;i++) fa[i]=i;
    for(int i=1;i<=m;i++) {
        u=e[i].u; v=e[i].v;
        int fau=find(u),fav=find(v);
        if(fau!=fav) {
            tot++;
            fa[fau]=fav;
            if(tot==n-1) {ans=e[i].w;break;}
        }
    }
    printf("%d %d\n",tot,ans);
    return 0;
}
View Code

 

BZOJ 1083 [SCOI2005]繁忙的都市

原文:http://www.cnblogs.com/Achenchen/p/7541328.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!