結果
問題 | No.2290 UnUnion Find |
ユーザー | furon |
提出日時 | 2023-05-15 21:05:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,931 bytes |
コンパイル時間 | 1,703 ms |
コンパイル使用メモリ | 134,484 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-05-08 03:02:20 |
合計ジャッジ時間 | 24,150 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 327 ms
5,376 KB |
testcase_03 | AC | 320 ms
8,832 KB |
testcase_04 | AC | 319 ms
8,704 KB |
testcase_05 | AC | 326 ms
8,704 KB |
testcase_06 | AC | 317 ms
8,704 KB |
testcase_07 | AC | 323 ms
8,832 KB |
testcase_08 | AC | 317 ms
8,704 KB |
testcase_09 | AC | 325 ms
8,704 KB |
testcase_10 | AC | 315 ms
8,704 KB |
testcase_11 | AC | 313 ms
8,704 KB |
testcase_12 | AC | 319 ms
8,704 KB |
testcase_13 | AC | 322 ms
8,704 KB |
testcase_14 | AC | 330 ms
8,704 KB |
testcase_15 | AC | 325 ms
8,704 KB |
testcase_16 | AC | 327 ms
8,832 KB |
testcase_17 | AC | 313 ms
8,832 KB |
testcase_18 | AC | 322 ms
8,704 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 378 ms
11,392 KB |
testcase_25 | WA | - |
testcase_26 | AC | 394 ms
12,800 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 398 ms
14,208 KB |
testcase_35 | AC | 392 ms
12,544 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 314 ms
8,704 KB |
testcase_45 | AC | 345 ms
8,704 KB |
testcase_46 | AC | 340 ms
8,704 KB |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <functional> #include <cmath> #include <string> #include <queue> #include <map> #include <bitset> #include <set> #include <stack> #include <numeric> #include <unordered_map> #include <random> using namespace std; using ll = long long; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vb = vector<bool>; using vvb = vector<vb>; using vd = vector<double>; using vs = vector<string>; using pii = pair<int, int>; using pll = pair<ll, ll>; using pdd = pair<double, double>; using vpii = vector<pii>; using vpll = vector<pll>; using vpdd = vector<pdd>; const int inf = (1 << 30) - 1; const ll INF = 1LL << 60; const int MOD = 1000000007; //const int MOD = 998244353; struct UnionFind { vector<int> par; vector<int> sizes; UnionFind(int n) : par(n), sizes(n, 1) { for (int i = 0; i < n; i++) par[i] = i; } int root(int x) { if (x == par[x]) return x; return par[x] = root(par[x]); } void unite(int x, int y) { x = root(x); y = root(y); if (x == y) return; if (sizes[x] < sizes[y]) swap(x, y); par[y] = x; sizes[x] += sizes[y]; } bool same(int x, int y) { return root(x) == root(y); } int size(int x) { return sizes[root(x)]; } }; int main() { int n, q; cin >> n >> q; UnionFind uf(n); set<int> node; for (int i = 0; i < n; i++) node.insert(i); for (int i = 0; i < q; i++) { int t, u, v; cin >> t; if (t == 1) { cin >> u >> v; u--; v--; if (!uf.same(u, v)) { uf.unite(u, v); int x = u; if (uf.root(v) == u) x = v; node.erase(v); } } else { cin >> v; v--; int r = uf.root(v); if (*node.begin() == r) { if (node.size() == 1) { cout << -1 << endl; } else { cout << *(next(node.begin())) + 1 << endl; } } else { cout << *node.begin() + 1 << endl; } } } return 0; }