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

并查集模板

时间:2017-08-07 20:38:56      阅读:107      评论:0      收藏:0      [点我收藏+]

标签:模板   bsp   const   style   union   max   ons   logs   pre   

const int maxn =  ;
int fa[maxn];

int fi(int x)
{
    return fa[x]==x?x:fa[x]=fi(fa[x]);
}
void union(int x,int y)
{
    int fx = fi(x),fy = fi(y);
    if(fx != fy) fa[fx] = fy;
}

bool check(int x,int y)
{
    int fx = fi(x),fy = fi(y);
    if(fx == fy) return true;
    return false;
}

 

并查集模板

标签:模板   bsp   const   style   union   max   ons   logs   pre   

原文地址:http://www.cnblogs.com/Draymonder/p/7300943.html

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