結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 310 ms
5,376 KB
testcase_03 AC 296 ms
8,320 KB
testcase_04 AC 302 ms
8,320 KB
testcase_05 WA -
testcase_06 AC 295 ms
8,320 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 300 ms
8,320 KB
testcase_11 WA -
testcase_12 AC 345 ms
8,320 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 313 ms
8,192 KB
testcase_18 WA -
testcase_19 AC 368 ms
9,088 KB
testcase_20 AC 423 ms
13,440 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 420 ms
10,624 KB
testcase_25 WA -
testcase_26 AC 421 ms
12,032 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 394 ms
10,112 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 426 ms
13,312 KB
testcase_35 AC 395 ms
11,904 KB
testcase_36 WA -
testcase_37 AC 376 ms
6,812 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 420 ms
11,392 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 388 ms
8,576 KB
testcase_44 WA -
testcase_45 AC 343 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