結果

問題 No.2290 UnUnion Find
ユーザー intfansintfans
提出日時 2023-05-15 23:33:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 1,881 bytes
コンパイル時間 2,004 ms
コンパイル使用メモリ 213,872 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-05-08 04:12:50
合計ジャッジ時間 11,879 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 37 ms
6,944 KB
testcase_03 AC 93 ms
8,832 KB
testcase_04 AC 93 ms
8,704 KB
testcase_05 AC 95 ms
8,704 KB
testcase_06 AC 94 ms
8,704 KB
testcase_07 AC 98 ms
8,576 KB
testcase_08 AC 97 ms
8,704 KB
testcase_09 AC 94 ms
8,576 KB
testcase_10 AC 96 ms
8,704 KB
testcase_11 AC 92 ms
8,576 KB
testcase_12 AC 92 ms
8,704 KB
testcase_13 AC 94 ms
8,704 KB
testcase_14 AC 92 ms
8,704 KB
testcase_15 AC 92 ms
8,704 KB
testcase_16 AC 105 ms
8,704 KB
testcase_17 AC 110 ms
8,704 KB
testcase_18 AC 96 ms
8,704 KB
testcase_19 AC 119 ms
9,600 KB
testcase_20 AC 151 ms
14,208 KB
testcase_21 AC 40 ms
6,944 KB
testcase_22 AC 69 ms
6,940 KB
testcase_23 AC 72 ms
6,940 KB
testcase_24 AC 129 ms
11,264 KB
testcase_25 AC 60 ms
6,940 KB
testcase_26 AC 144 ms
12,672 KB
testcase_27 AC 136 ms
11,904 KB
testcase_28 AC 97 ms
7,808 KB
testcase_29 AC 120 ms
10,624 KB
testcase_30 AC 49 ms
6,940 KB
testcase_31 AC 123 ms
9,984 KB
testcase_32 AC 60 ms
6,944 KB
testcase_33 AC 92 ms
7,680 KB
testcase_34 AC 165 ms
14,208 KB
testcase_35 AC 147 ms
12,672 KB
testcase_36 AC 66 ms
6,940 KB
testcase_37 AC 88 ms
7,040 KB
testcase_38 AC 69 ms
6,944 KB
testcase_39 AC 76 ms
6,940 KB
testcase_40 AC 147 ms
12,160 KB
testcase_41 AC 61 ms
6,944 KB
testcase_42 AC 114 ms
9,216 KB
testcase_43 AC 110 ms
8,832 KB
testcase_44 AC 104 ms
8,576 KB
testcase_45 AC 97 ms
8,704 KB
testcase_46 AC 101 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ll = long long;

// https://yukicoder.me/submissions/866171

/*
n个点,初始没有边,q次操作,(1 <= n, q <= 2e5) 每次操作有以下两种。
1 u v 在顶点 u, v 间连接一条边
2 v 输出一个不在一个联通块中的节点,如果没有,输出-1

*/

struct DSU {
    vector<int> p, siz;
    DSU(int n) : p(n), siz(n, 1) { iota(p.begin(), p.end(), 0); }
    inline int get(int x) { return (x == p[x] ? x : (p[x] = get(p[x])));}
    bool same(int x, int y) { return get(x) == get(y); }
    bool merge(int x, int y) {
        x = get(x), y = get(y);
        if (x == y) return false;
        siz[x] += siz[y];
        p[y] = x;
        return true;
    }
    int size(int x) { return siz[get(x)]; }
    vector<vector<int>> groups() {
        vector<vector<int>> res(p.size());
        for (int i = 0; i < p.size(); i++) res[get(i)].push_back(i);
        res.erase(
            remove_if(res.begin(), res.end(),
                           [&](const vector<int>& v) { return v.empty(); }),
            res.end());
        return res;
    }
};

int main() {
    ios::sync_with_stdio(false); cin.tie(nullptr);
    
    int n, q;
    cin >> n >> q;

    DSU d(n);
    set<int> s;
    for (int i = 0; i < n; ++i) {
        s.insert(i);    
    }

    int t, u, v;
    while(q--) {
        cin >> t;
        if (t == 1) {
            cin >> u >> v;
            u--, v--;
            u = d.get(u), v = d.get(v);
            d.merge(u, v);
            int e = d.get(u) ^ u ^ v;
            s.erase(e);
        } else {
            cin >> v;
            v--;
            v = d.get(v);
            if (*s.begin() == v) {
                cout << (s.size() == 1 ? -1 : (*next(s.begin()) + 1)) << '\n';
            } else {
                cout << *s.begin() + 1 << '\n';
            }
        }
    }

    return 0;
}
0