結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 42 ms
5,248 KB
testcase_03 AC 115 ms
8,320 KB
testcase_04 AC 114 ms
8,320 KB
testcase_05 AC 115 ms
8,192 KB
testcase_06 AC 115 ms
8,320 KB
testcase_07 AC 116 ms
8,320 KB
testcase_08 AC 115 ms
8,320 KB
testcase_09 AC 115 ms
8,320 KB
testcase_10 AC 117 ms
8,320 KB
testcase_11 AC 115 ms
8,320 KB
testcase_12 AC 115 ms
8,320 KB
testcase_13 AC 114 ms
8,192 KB
testcase_14 AC 115 ms
8,320 KB
testcase_15 AC 116 ms
8,320 KB
testcase_16 AC 113 ms
8,320 KB
testcase_17 AC 116 ms
8,320 KB
testcase_18 AC 115 ms
8,192 KB
testcase_19 AC 155 ms
9,088 KB
testcase_20 AC 194 ms
13,440 KB
testcase_21 AC 53 ms
5,248 KB
testcase_22 AC 99 ms
6,016 KB
testcase_23 AC 99 ms
5,888 KB
testcase_24 AC 171 ms
10,752 KB
testcase_25 AC 82 ms
5,248 KB
testcase_26 AC 188 ms
12,160 KB
testcase_27 AC 183 ms
11,264 KB
testcase_28 AC 131 ms
7,424 KB
testcase_29 AC 169 ms
10,112 KB
testcase_30 AC 60 ms
5,248 KB
testcase_31 AC 165 ms
9,472 KB
testcase_32 AC 86 ms
5,376 KB
testcase_33 AC 129 ms
7,296 KB
testcase_34 AC 190 ms
13,440 KB
testcase_35 AC 184 ms
11,904 KB
testcase_36 AC 91 ms
5,504 KB
testcase_37 AC 120 ms
6,784 KB
testcase_38 AC 89 ms
5,376 KB
testcase_39 AC 104 ms
6,016 KB
testcase_40 AC 182 ms
11,520 KB
testcase_41 AC 82 ms
5,248 KB
testcase_42 AC 155 ms
8,704 KB
testcase_43 AC 150 ms
8,448 KB
testcase_44 AC 117 ms
8,320 KB
testcase_45 AC 134 ms
8,320 KB
testcase_46 AC 131 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