結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 36 ms
6,944 KB
testcase_03 AC 99 ms
8,832 KB
testcase_04 AC 100 ms
8,704 KB
testcase_05 AC 104 ms
8,704 KB
testcase_06 AC 103 ms
8,704 KB
testcase_07 AC 99 ms
8,704 KB
testcase_08 AC 100 ms
8,576 KB
testcase_09 AC 99 ms
8,704 KB
testcase_10 AC 97 ms
8,832 KB
testcase_11 AC 94 ms
8,704 KB
testcase_12 AC 102 ms
8,704 KB
testcase_13 AC 98 ms
8,576 KB
testcase_14 AC 97 ms
8,704 KB
testcase_15 AC 96 ms
8,704 KB
testcase_16 AC 93 ms
8,704 KB
testcase_17 AC 96 ms
8,704 KB
testcase_18 AC 95 ms
8,704 KB
testcase_19 AC 131 ms
9,472 KB
testcase_20 AC 196 ms
14,208 KB
testcase_21 AC 42 ms
6,944 KB
testcase_22 AC 71 ms
6,940 KB
testcase_23 AC 69 ms
6,944 KB
testcase_24 AC 128 ms
11,264 KB
testcase_25 AC 61 ms
6,944 KB
testcase_26 AC 140 ms
12,800 KB
testcase_27 AC 132 ms
11,904 KB
testcase_28 AC 91 ms
7,680 KB
testcase_29 AC 128 ms
10,752 KB
testcase_30 AC 48 ms
6,940 KB
testcase_31 AC 120 ms
9,856 KB
testcase_32 AC 62 ms
6,944 KB
testcase_33 AC 94 ms
7,680 KB
testcase_34 AC 148 ms
14,208 KB
testcase_35 AC 145 ms
12,672 KB
testcase_36 AC 66 ms
6,940 KB
testcase_37 AC 88 ms
7,168 KB
testcase_38 AC 64 ms
6,944 KB
testcase_39 AC 73 ms
6,944 KB
testcase_40 AC 134 ms
12,032 KB
testcase_41 AC 59 ms
6,940 KB
testcase_42 AC 113 ms
9,216 KB
testcase_43 AC 114 ms
8,704 KB
testcase_44 AC 99 ms
8,704 KB
testcase_45 AC 99 ms
8,704 KB
testcase_46 AC 100 ms
8,832 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