結果

問題 No.2290 UnUnion Find
ユーザー mintmint
提出日時 2023-05-06 23:48:55
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
実行時間 -
コード長 1,264 bytes
コンパイル時間 1,573 ms
コンパイル使用メモリ 169,936 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-11-24 04:00:26
合計ジャッジ時間 64,957 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,496 KB
testcase_01 AC 2 ms
10,496 KB
testcase_02 AC 95 ms
10,496 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 AC 1,378 ms
10,880 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 53 ms
9,216 KB
testcase_20 AC 61 ms
11,392 KB
testcase_21 TLE -
testcase_22 AC 57 ms
8,832 KB
testcase_23 AC 114 ms
10,496 KB
testcase_24 AC 59 ms
6,528 KB
testcase_25 AC 279 ms
5,248 KB
testcase_26 AC 62 ms
7,168 KB
testcase_27 AC 55 ms
6,784 KB
testcase_28 AC 54 ms
5,248 KB
testcase_29 AC 58 ms
6,400 KB
testcase_30 TLE -
testcase_31 AC 56 ms
6,144 KB
testcase_32 AC 134 ms
5,248 KB
testcase_33 AC 50 ms
5,248 KB
testcase_34 AC 62 ms
7,936 KB
testcase_35 AC 60 ms
7,168 KB
testcase_36 AC 152 ms
5,248 KB
testcase_37 AC 52 ms
5,248 KB
testcase_38 AC 61 ms
5,248 KB
testcase_39 AC 77 ms
5,248 KB
testcase_40 AC 55 ms
7,040 KB
testcase_41 AC 568 ms
5,248 KB
testcase_42 AC 54 ms
5,760 KB
testcase_43 AC 52 ms
5,504 KB
testcase_44 TLE -
testcase_45 AC 53 ms
5,504 KB
testcase_46 AC 55 ms
11,264 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)];
    }
};

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    ll n, q; cin >> n >> q;
    dsu uf(n);
    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);
        }else{
            ll v; cin >> v;
            v--;
            bool b = true;
            for(ll j = 0; j < n; j++){
                if(!uf.sch(v, j)){
                    cout << j+1 << '\n';
                    b = false;
                    break;
                }
            }
            if(b) cout << -1 << '\n'; 
        }
    }
    return 0;
}
0