結果

問題 No.2290 UnUnion Find
ユーザー mintmint
提出日時 2023-05-07 21:47:26
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,634 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 178,812 KB
実行使用メモリ 17,280 KB
最終ジャッジ日時 2024-11-24 20:32:16
合計ジャッジ時間 12,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 33 ms
6,820 KB
testcase_03 AC 126 ms
10,240 KB
testcase_04 AC 127 ms
10,240 KB
testcase_05 AC 129 ms
10,240 KB
testcase_06 AC 122 ms
10,368 KB
testcase_07 AC 129 ms
10,240 KB
testcase_08 AC 128 ms
10,240 KB
testcase_09 AC 128 ms
10,240 KB
testcase_10 AC 129 ms
10,240 KB
testcase_11 AC 128 ms
10,240 KB
testcase_12 AC 128 ms
10,112 KB
testcase_13 AC 125 ms
10,112 KB
testcase_14 AC 129 ms
10,240 KB
testcase_15 AC 126 ms
10,240 KB
testcase_16 AC 124 ms
10,112 KB
testcase_17 AC 128 ms
10,240 KB
testcase_18 AC 129 ms
10,112 KB
testcase_19 AC 167 ms
11,264 KB
testcase_20 AC 228 ms
17,280 KB
testcase_21 AC 43 ms
6,816 KB
testcase_22 AC 85 ms
6,816 KB
testcase_23 AC 87 ms
6,816 KB
testcase_24 AC 196 ms
13,440 KB
testcase_25 AC 71 ms
6,820 KB
testcase_26 AC 217 ms
15,616 KB
testcase_27 AC 212 ms
14,336 KB
testcase_28 AC 128 ms
9,088 KB
testcase_29 AC 192 ms
12,800 KB
testcase_30 AC 48 ms
6,820 KB
testcase_31 AC 172 ms
11,776 KB
testcase_32 AC 72 ms
6,820 KB
testcase_33 AC 128 ms
8,960 KB
testcase_34 AC 236 ms
17,280 KB
testcase_35 AC 222 ms
15,232 KB
testcase_36 AC 78 ms
6,816 KB
testcase_37 AC 114 ms
8,064 KB
testcase_38 AC 78 ms
6,820 KB
testcase_39 AC 90 ms
6,912 KB
testcase_40 AC 208 ms
14,592 KB
testcase_41 AC 66 ms
6,816 KB
testcase_42 AC 159 ms
10,880 KB
testcase_43 AC 153 ms
10,496 KB
testcase_44 AC 131 ms
10,240 KB
testcase_45 AC 129 ms
10,240 KB
testcase_46 AC 126 ms
10,112 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