結果

問題 No.2290 UnUnion Find
ユーザー ynm3nynm3n
提出日時 2023-05-06 00:02:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,808 bytes
コンパイル時間 1,313 ms
コンパイル使用メモリ 88,532 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-05-02 19:11:28
合計ジャッジ時間 11,216 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 39 ms
5,376 KB
testcase_03 AC 108 ms
8,448 KB
testcase_04 AC 109 ms
8,320 KB
testcase_05 AC 114 ms
8,320 KB
testcase_06 AC 110 ms
8,192 KB
testcase_07 AC 108 ms
8,192 KB
testcase_08 AC 111 ms
8,192 KB
testcase_09 AC 113 ms
8,320 KB
testcase_10 AC 110 ms
8,320 KB
testcase_11 AC 114 ms
8,192 KB
testcase_12 AC 112 ms
8,320 KB
testcase_13 AC 116 ms
8,320 KB
testcase_14 AC 110 ms
8,320 KB
testcase_15 AC 109 ms
8,320 KB
testcase_16 AC 112 ms
8,192 KB
testcase_17 AC 114 ms
8,192 KB
testcase_18 AC 109 ms
8,192 KB
testcase_19 AC 149 ms
9,088 KB
testcase_20 AC 177 ms
13,440 KB
testcase_21 AC 51 ms
5,376 KB
testcase_22 AC 95 ms
5,888 KB
testcase_23 AC 101 ms
5,888 KB
testcase_24 AC 174 ms
10,752 KB
testcase_25 AC 79 ms
5,376 KB
testcase_26 AC 179 ms
12,160 KB
testcase_27 AC 180 ms
11,264 KB
testcase_28 AC 127 ms
7,296 KB
testcase_29 AC 164 ms
10,112 KB
testcase_30 AC 54 ms
5,376 KB
testcase_31 AC 156 ms
9,600 KB
testcase_32 AC 83 ms
5,504 KB
testcase_33 AC 129 ms
7,344 KB
testcase_34 AC 187 ms
13,440 KB
testcase_35 AC 168 ms
11,904 KB
testcase_36 AC 84 ms
5,504 KB
testcase_37 AC 117 ms
6,708 KB
testcase_38 AC 84 ms
5,500 KB
testcase_39 AC 101 ms
6,144 KB
testcase_40 AC 165 ms
11,520 KB
testcase_41 AC 73 ms
5,376 KB
testcase_42 AC 145 ms
8,832 KB
testcase_43 AC 143 ms
8,448 KB
testcase_44 AC 107 ms
8,320 KB
testcase_45 AC 119 ms
8,320 KB
testcase_46 AC 121 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
using namespace std;

struct UnionFindTree {
    vector<int> parent;
    int cnt;
    set<int> roots;

    UnionFindTree(int n) {
        parent.assign(n, -1);
        cnt = n;
        for (int i = 0; i < n; i++) {
            roots.insert(i);
        }
    }

    int findRoot(int a) {
        if (parent[a] < 0) {
            return a;
        }
        int r = findRoot(parent[a]);
        if (roots.count(a) && a != r) {
            roots.erase(a);
        }
        parent[a] = r;
        return r;
    }

    bool unite(int a, int b) {
        int x = findRoot(a), y = findRoot(b);
        if (x == y) {
            return false;
        }
        if (size(x) < size(y)) {
            swap(x, y);
        }
        roots.erase(y);
        parent[x] += parent[y];
        parent[y] = x;
        cnt--;
        return true;
    }

    bool sameRoot(int a, int b) {
        return findRoot(a) == findRoot(b);
    }

    int size(int a) {
        return -parent[findRoot(a)];
    }
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int n, q;
    cin >> n >> q;

    UnionFindTree uf(n);
    int typ, u, v;
    for (int i = 0; i < q; i++) {
        cin >> typ;
        switch (typ) {
        case 1:
            cin >> u >> v;
            u--, v--;
            uf.unite(u, v);
            break;
        case 2:
            cin >> v;
            v--;
            int r = uf.findRoot(v);
            int ans = -1;
            for (auto it = uf.roots.begin(); it != uf.roots.end(); it++) {
                int v2 = *it;
                if (r != v2) {
                    ans = v2 + 1;
                    break;
                }
            }
            cout << ans << "\n";
            break;
        }
    }

    return 0;
}
0