結果

問題 No.2290 UnUnion Find
ユーザー ooaiuooaiu
提出日時 2024-11-14 16:10:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 874 bytes
コンパイル時間 3,546 ms
コンパイル使用メモリ 252,976 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-14 16:10:34
合計ジャッジ時間 20,071 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,816 KB
testcase_02 AC 278 ms
6,816 KB
testcase_03 AC 168 ms
6,820 KB
testcase_04 AC 169 ms
6,816 KB
testcase_05 AC 172 ms
6,820 KB
testcase_06 AC 175 ms
6,820 KB
testcase_07 AC 173 ms
6,820 KB
testcase_08 AC 174 ms
6,816 KB
testcase_09 AC 172 ms
6,816 KB
testcase_10 AC 170 ms
6,816 KB
testcase_11 AC 172 ms
6,816 KB
testcase_12 AC 169 ms
6,816 KB
testcase_13 AC 172 ms
6,820 KB
testcase_14 AC 170 ms
6,816 KB
testcase_15 AC 176 ms
6,816 KB
testcase_16 AC 174 ms
6,820 KB
testcase_17 AC 171 ms
6,820 KB
testcase_18 AC 171 ms
6,816 KB
testcase_19 AC 193 ms
6,816 KB
testcase_20 AC 190 ms
6,816 KB
testcase_21 AC 281 ms
6,816 KB
testcase_22 AC 236 ms
6,816 KB
testcase_23 AC 231 ms
6,816 KB
testcase_24 AC 184 ms
6,820 KB
testcase_25 AC 251 ms
6,816 KB
testcase_26 AC 187 ms
6,820 KB
testcase_27 AC 195 ms
6,816 KB
testcase_28 AC 202 ms
6,816 KB
testcase_29 AC 182 ms
6,820 KB
testcase_30 AC 269 ms
6,816 KB
testcase_31 AC 188 ms
6,816 KB
testcase_32 AC 247 ms
6,816 KB
testcase_33 AC 206 ms
6,816 KB
testcase_34 AC 190 ms
6,816 KB
testcase_35 AC 189 ms
6,816 KB
testcase_36 AC 240 ms
6,816 KB
testcase_37 AC 242 ms
6,816 KB
testcase_38 AC 250 ms
6,824 KB
testcase_39 AC 229 ms
6,816 KB
testcase_40 AC 187 ms
6,816 KB
testcase_41 AC 280 ms
6,820 KB
testcase_42 AC 188 ms
6,820 KB
testcase_43 AC 193 ms
6,816 KB
testcase_44 AC 168 ms
6,820 KB
testcase_45 AC 176 ms
6,816 KB
testcase_46 AC 175 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

#include <atcoder/dsu>
void solve() {
    int N, Q; cin >> N >> Q;
    atcoder::dsu uf(N);
    vector<int> memo(N);
    while(Q--) {
        int t; cin >> t;
        if(t == 1) {
            int u, v; cin >> u >> v;
            u--; v--;
            uf.merge(u, v);
        }else {
            int u; cin >> u;
            u--;
            int& cur = memo[uf.leader(u)];
            while(cur < N && uf.same(u, cur)) cur++;
            if(cur != N) {
                cout << cur + 1 << endl;
            }else {
                cout << -1 << endl;
            }
        }//???
    }
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while(tt--) {
        solve();
    }
}
0