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

HDOJ-1232 畅通工程【并查集裸题】

时间:2017-03-09 21:46:24      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:main   php   lan   并查集   color   return   for   ref   code   

题目传送门 : http://acm.hdu.edu.cn/showproblem.php?pid=1232

 

并查集的裸题

 

AC code:

#include <iostream>
#define MAXN 1050
using namespace std;
int pre[MAXN];
int Find(int pos) {
    int r = pos;
    while (r != pre[r])
        r = pre[r];

    int i = pos;
    while (i != r) {
        int t = pre[i];
        pre[i] = r;
        i = t;
    }
    return r;
}
void Join(int posX, int posY) {
    int rootX = Find(posX), rootY = Find(posY);
    if (rootX != rootY)
        pre[rootX] = rootY;
}
int main()
{
    int N, M;
    while (cin >> N >> M && N) {
        int ct = 0;
        for (int i = 1; i <= N; ++i)
            pre[i] = i;
        int cityA, cityB;
        while (M--) {
            cin >> cityA >> cityB;
            Join(cityA, cityB);
        }
        for (int i = 1; i <= N; ++i)
            if (pre[i] == i)
                ct++;
        cout << ct - 1 << endl;
    }
    return 0;
}

 

HDOJ-1232 畅通工程【并查集裸题】

标签:main   php   lan   并查集   color   return   for   ref   code   

原文地址:http://www.cnblogs.com/ray-coding-in-rays/p/6528028.html

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