結果

問題 No.2290 UnUnion Find
ユーザー mintmint
提出日時 2023-05-07 21:47:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 1,634 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 178,140 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-05-03 17:29:39
合計ジャッジ時間 13,094 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 127 ms
10,240 KB
testcase_04 AC 130 ms
10,240 KB
testcase_05 AC 128 ms
10,240 KB
testcase_06 AC 135 ms
10,240 KB
testcase_07 AC 137 ms
10,240 KB
testcase_08 AC 127 ms
10,240 KB
testcase_09 AC 129 ms
10,240 KB
testcase_10 AC 131 ms
10,112 KB
testcase_11 AC 134 ms
10,240 KB
testcase_12 AC 127 ms
10,240 KB
testcase_13 AC 127 ms
10,368 KB
testcase_14 AC 129 ms
10,240 KB
testcase_15 AC 127 ms
10,112 KB
testcase_16 AC 131 ms
10,240 KB
testcase_17 AC 126 ms
10,240 KB
testcase_18 AC 132 ms
10,240 KB
testcase_19 AC 170 ms
11,264 KB
testcase_20 AC 280 ms
17,280 KB
testcase_21 AC 42 ms
5,376 KB
testcase_22 AC 87 ms
6,656 KB
testcase_23 AC 87 ms
6,784 KB
testcase_24 AC 194 ms
13,568 KB
testcase_25 AC 69 ms
5,760 KB
testcase_26 AC 222 ms
15,488 KB
testcase_27 AC 207 ms
14,336 KB
testcase_28 AC 127 ms
9,088 KB
testcase_29 AC 191 ms
12,672 KB
testcase_30 AC 51 ms
5,376 KB
testcase_31 AC 183 ms
11,904 KB
testcase_32 AC 73 ms
6,144 KB
testcase_33 AC 129 ms
8,960 KB
testcase_34 AC 243 ms
17,280 KB
testcase_35 AC 218 ms
15,360 KB
testcase_36 AC 78 ms
6,272 KB
testcase_37 AC 110 ms
8,320 KB
testcase_38 AC 77 ms
6,144 KB
testcase_39 AC 91 ms
7,040 KB
testcase_40 AC 221 ms
14,592 KB
testcase_41 AC 69 ms
5,760 KB
testcase_42 AC 167 ms
10,880 KB
testcase_43 AC 155 ms
10,496 KB
testcase_44 AC 134 ms
10,240 KB
testcase_45 AC 134 ms
10,240 KB
testcase_46 AC 129 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
struct dsu{
    vector<ll> par, rank, siz;
    dsu(ll n): par(n, -1), rank(n, 0), siz(n, 1){}
    ll root(ll a){
        if(par[a] == -1) return a;
        else return par[a] = root(par[a]);
    }
    bool sch(ll a, ll b){
        return root(a) == root(b);
    }
    bool mg(ll a, ll b){
         a = root(a), b = root(b);
        if(a == b) return false;
        if(rank[a] < rank[b]) swap(a, b);
        par[b] = a;
        if(rank[a] == rank[b]) rank[a]++;
        siz[a] += siz[b];
        return true;
    }
    ll sz(ll a){
        return siz[root(a)];
    }
    vector<ll> pp(ll a){
        return par;
    }
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n, q; cin >> n >> q;
    dsu uf(n);
    set<ll> st;
    for(int i = 0; i < n; i++) st.insert(i);
    for(int i = 0; i < q; i++){
        int t; cin >> t;
        if(t == 1){
            ll u, v; cin >> u >> v;
            u--, v--;
            uf.mg(u, v);
            ll uu = uf.root(u), vv = uf.root(v);
            if(st.count(uu)) st.erase(uu);
            if(st.count(vv)) st.erase(vv);
            if(st.count(u)) st.erase(u);
            if(st.count(v)) st.erase(v);
        }else{
            ll v; cin >> v;
            v--;
            ll s = uf.sz(0);
            if(s == n) cout << -1 << '\n';
            else{
                if(*begin(st) == v){
                    st.erase(v);
                    cout << *begin(st)+1 << '\n';
                    st.insert(v);
                }else  cout << *begin(st)+1 << '\n';
            }
        }
    }
    return 0;
}
0