結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 36 ms
6,816 KB
testcase_03 AC 109 ms
8,704 KB
testcase_04 AC 106 ms
8,576 KB
testcase_05 AC 116 ms
8,704 KB
testcase_06 AC 107 ms
8,704 KB
testcase_07 AC 109 ms
8,704 KB
testcase_08 AC 112 ms
8,704 KB
testcase_09 AC 110 ms
8,832 KB
testcase_10 AC 111 ms
8,704 KB
testcase_11 AC 114 ms
8,576 KB
testcase_12 AC 115 ms
8,704 KB
testcase_13 AC 107 ms
8,704 KB
testcase_14 AC 106 ms
8,576 KB
testcase_15 AC 106 ms
8,832 KB
testcase_16 AC 106 ms
8,576 KB
testcase_17 AC 104 ms
8,704 KB
testcase_18 AC 106 ms
8,704 KB
testcase_19 AC 127 ms
9,472 KB
testcase_20 AC 166 ms
14,208 KB
testcase_21 AC 44 ms
6,816 KB
testcase_22 AC 77 ms
6,816 KB
testcase_23 AC 75 ms
6,820 KB
testcase_24 AC 143 ms
11,264 KB
testcase_25 AC 65 ms
6,820 KB
testcase_26 AC 160 ms
12,800 KB
testcase_27 AC 154 ms
11,904 KB
testcase_28 AC 100 ms
7,680 KB
testcase_29 AC 143 ms
10,752 KB
testcase_30 AC 51 ms
6,816 KB
testcase_31 AC 128 ms
9,984 KB
testcase_32 AC 69 ms
6,816 KB
testcase_33 AC 103 ms
7,552 KB
testcase_34 AC 169 ms
14,208 KB
testcase_35 AC 158 ms
12,800 KB
testcase_36 AC 70 ms
6,816 KB
testcase_37 AC 92 ms
6,912 KB
testcase_38 AC 69 ms
6,820 KB
testcase_39 AC 78 ms
6,816 KB
testcase_40 AC 156 ms
12,160 KB
testcase_41 AC 65 ms
6,820 KB
testcase_42 AC 130 ms
9,216 KB
testcase_43 AC 122 ms
8,832 KB
testcase_44 AC 107 ms
8,704 KB
testcase_45 AC 109 ms
8,704 KB
testcase_46 AC 110 ms
8,576 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);
            if (u != 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