結果
問題 | No.2290 UnUnion Find |
ユーザー | furon |
提出日時 | 2023-05-05 22:14:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,749 bytes |
コンパイル時間 | 1,319 ms |
コンパイル使用メモリ | 127,724 KB |
実行使用メモリ | 14,592 KB |
最終ジャッジ日時 | 2024-11-23 08:20:19 |
合計ジャッジ時間 | 57,889 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
9,216 KB |
testcase_02 | AC | 334 ms
10,496 KB |
testcase_03 | AC | 252 ms
9,216 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | AC | 848 ms
9,344 KB |
testcase_07 | AC | 1,472 ms
9,216 KB |
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 | 276 ms
5,248 KB |
testcase_20 | AC | 278 ms
5,248 KB |
testcase_21 | AC | 356 ms
5,248 KB |
testcase_22 | AC | 313 ms
5,248 KB |
testcase_23 | AC | 342 ms
5,248 KB |
testcase_24 | AC | 268 ms
5,248 KB |
testcase_25 | AC | 424 ms
5,248 KB |
testcase_26 | AC | 274 ms
5,248 KB |
testcase_27 | AC | 272 ms
5,248 KB |
testcase_28 | AC | 287 ms
5,248 KB |
testcase_29 | AC | 278 ms
5,248 KB |
testcase_30 | AC | 467 ms
5,248 KB |
testcase_31 | AC | 268 ms
5,248 KB |
testcase_32 | AC | 361 ms
5,248 KB |
testcase_33 | AC | 286 ms
5,248 KB |
testcase_34 | AC | 279 ms
5,248 KB |
testcase_35 | AC | 276 ms
5,248 KB |
testcase_36 | AC | 366 ms
5,248 KB |
testcase_37 | AC | 293 ms
5,248 KB |
testcase_38 | AC | 317 ms
5,248 KB |
testcase_39 | AC | 327 ms
5,248 KB |
testcase_40 | AC | 280 ms
5,248 KB |
testcase_41 | AC | 538 ms
5,248 KB |
testcase_42 | AC | 282 ms
5,248 KB |
testcase_43 | AC | 279 ms
5,248 KB |
testcase_44 | TLE | - |
testcase_45 | AC | 268 ms
5,248 KB |
testcase_46 | AC | 276 ms
14,592 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); for (int i = 0; i < q; i++) { int t, u, v; cin >> t; if (t == 1) { cin >> u >> v; u--; v--; uf.unite(u, v); } else { cin >> v; v--; int r = uf.root(v); if (uf.size(r) == n) { cout << -1 << endl; } else { for (int j = 0; j < n; j++) { if (uf.root(j) != r) { cout << j + 1 << endl; break; } } } } } return 0; }