結果

問題 No.2290 UnUnion Find
ユーザー ynm3nynm3n
提出日時 2023-05-05 23:56:26
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,771 bytes
コンパイル時間 1,131 ms
コンパイル使用メモリ 93,740 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-11-23 13:05:19
合計ジャッジ時間 21,693 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 328 ms
5,248 KB
testcase_03 AC 325 ms
8,320 KB
testcase_04 AC 338 ms
8,448 KB
testcase_05 WA -
testcase_06 AC 325 ms
8,320 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 368 ms
8,320 KB
testcase_11 WA -
testcase_12 AC 327 ms
8,448 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 328 ms
8,448 KB
testcase_18 WA -
testcase_19 AC 381 ms
9,088 KB
testcase_20 AC 411 ms
13,312 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 396 ms
10,624 KB
testcase_25 WA -
testcase_26 AC 416 ms
12,032 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 389 ms
10,112 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 421 ms
13,312 KB
testcase_35 AC 404 ms
12,032 KB
testcase_36 WA -
testcase_37 AC 369 ms
6,816 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 406 ms
11,520 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 389 ms
8,448 KB
testcase_44 WA -
testcase_45 AC 348 ms
8,320 KB
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class UnionFindTree {
public:
    vector<int> parent;
    int cnt;
    map<int, bool> roots;

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

    int findRoot(int a) {
        if (parent[a] < 0) {
            return a;
        }
        int r = findRoot(parent[a]);
        if (roots.count(a) != 0 && 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() {
    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;
            int r = uf.findRoot(v);
            int ans = -1;
            for (auto itr = uf.roots.begin(); itr != uf.roots.end(); itr++) {
                if (r != itr->first) {
                    ans = itr->first + 1;
                    break;
                }
            }
            cout << ans << endl;
            break;
        }
    }

    return 0;
}
0