結果
問題 | No.2290 UnUnion Find |
ユーザー | kusaf_ |
提出日時 | 2023-05-28 00:50:00 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 316 ms / 2,000 ms |
コード長 | 2,072 bytes |
コンパイル時間 | 2,145 ms |
コンパイル使用メモリ | 214,596 KB |
実行使用メモリ | 15,744 KB |
最終ジャッジ日時 | 2024-06-07 21:04:12 |
合計ジャッジ時間 | 14,377 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 39 ms
5,376 KB |
testcase_03 | AC | 109 ms
9,472 KB |
testcase_04 | AC | 109 ms
9,472 KB |
testcase_05 | AC | 109 ms
9,472 KB |
testcase_06 | AC | 108 ms
9,600 KB |
testcase_07 | AC | 109 ms
9,344 KB |
testcase_08 | AC | 107 ms
9,472 KB |
testcase_09 | AC | 107 ms
9,600 KB |
testcase_10 | AC | 105 ms
9,472 KB |
testcase_11 | AC | 111 ms
9,472 KB |
testcase_12 | AC | 104 ms
9,472 KB |
testcase_13 | AC | 108 ms
9,472 KB |
testcase_14 | AC | 107 ms
9,600 KB |
testcase_15 | AC | 106 ms
9,472 KB |
testcase_16 | AC | 109 ms
9,472 KB |
testcase_17 | AC | 108 ms
9,472 KB |
testcase_18 | AC | 107 ms
9,472 KB |
testcase_19 | AC | 127 ms
10,496 KB |
testcase_20 | AC | 181 ms
15,616 KB |
testcase_21 | AC | 49 ms
5,376 KB |
testcase_22 | AC | 77 ms
6,400 KB |
testcase_23 | AC | 93 ms
6,400 KB |
testcase_24 | AC | 147 ms
12,416 KB |
testcase_25 | AC | 156 ms
5,504 KB |
testcase_26 | AC | 164 ms
14,080 KB |
testcase_27 | AC | 160 ms
13,184 KB |
testcase_28 | AC | 102 ms
8,448 KB |
testcase_29 | AC | 142 ms
11,648 KB |
testcase_30 | AC | 212 ms
5,376 KB |
testcase_31 | AC | 132 ms
10,880 KB |
testcase_32 | AC | 90 ms
5,632 KB |
testcase_33 | AC | 101 ms
8,320 KB |
testcase_34 | AC | 180 ms
15,744 KB |
testcase_35 | AC | 163 ms
13,952 KB |
testcase_36 | AC | 116 ms
5,760 KB |
testcase_37 | AC | 89 ms
7,552 KB |
testcase_38 | AC | 73 ms
5,888 KB |
testcase_39 | AC | 83 ms
6,656 KB |
testcase_40 | AC | 154 ms
13,440 KB |
testcase_41 | AC | 316 ms
5,376 KB |
testcase_42 | AC | 118 ms
9,984 KB |
testcase_43 | AC | 115 ms
9,472 KB |
testcase_44 | AC | 113 ms
9,472 KB |
testcase_45 | AC | 106 ms
9,472 KB |
testcase_46 | AC | 110 ms
9,472 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; struct Unionfind { vector<ll> par, usiz; ll e = 0, v; Unionfind(ll n): par(n), usiz(n), v(n) { for(ll i = 0; i < n; i++) { par[i] = i; usiz[i] = 1; } } // ↓に"/"追加でコメントアウト解除 /** Unionfind(graph g): par(g()), usiz(g()), v(g()) { for(ll i = 0; i < v; i++) { par[i] = i; usiz[i] = 1; } for(ll i = 0; i < v; i++) { for(auto &j : g[i]) { if(i < j) unite(i, j); } } } /**/ ll root(ll x) { if(par[x] == x) return x; return par[x] = root(par[x]); } void unite(ll x, ll y) { x = root(x), y = root(y); if(x == y) return; if(usiz[x] > usiz[y]) swap(x, y); par[x] = y; usiz[y] += usiz[x]; e++; } void unite(pair<ll, ll> x) { unite(x.first, x.second); } bool same(ll x, ll y) { return root(x) == root(y); } bool same(pair<ll, ll> x) { return same(x.first, x.second); } ll size(ll x) { return usiz[root(x)]; } vector<vector<ll>> group() { vector<vector<ll>> r(v); for(ll i = 0; i < v; i++) r[root(i)].push_back(i); r.erase(remove_if(begin(r), end(r), [&](vector<ll> &r_) { return r_.empty(); })); return r; } ll operator[](ll i) { return root(i); } void operator()(ll x, ll y) { unite(x, y); } void operator()(pair<ll, ll> x) { unite(x); } ll operator()() { return v - e; } }; int main() { ios::sync_with_stdio(false); cin.tie(0); ll n, Q; cin >> n >> Q; Unionfind u(n); set<ll> s; for(ll i = 0; i < n; i++) s.insert(i); while(Q--) { ll f; cin >> f; if(f == 1) { ll x, y; cin >> x >> y; x--, y--; ll rx = u[x], ry = u[y]; u.unite(x, y); if(u[x] == rx) s.erase(y); else s.erase(x); } else { ll v; cin >> v; v--; if(u() == 1) cout << -1 << "\n"; else { ll r = u[v]; for(auto &i : s) { if(u[i] != r) { cout << i + 1 << "\n"; break; } } } } } }