結果
問題 | No.1054 Union add query |
ユーザー | merom686 |
提出日時 | 2020-05-16 02:40:26 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 140 ms / 2,000 ms |
コード長 | 1,412 bytes |
コンパイル時間 | 869 ms |
コンパイル使用メモリ | 90,304 KB |
実行使用メモリ | 7,168 KB |
最終ジャッジ日時 | 2024-09-19 18:49:10 |
合計ジャッジ時間 | 3,384 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 130 ms
5,376 KB |
testcase_04 | AC | 140 ms
7,168 KB |
testcase_05 | AC | 123 ms
5,376 KB |
testcase_06 | AC | 120 ms
5,376 KB |
testcase_07 | AC | 115 ms
5,376 KB |
testcase_08 | AC | 130 ms
5,376 KB |
testcase_09 | AC | 135 ms
7,168 KB |
testcase_10 | AC | 93 ms
7,040 KB |
ソースコード
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <cstdio> #include <cstring> #include <cmath> using namespace std; using ll = long long; struct UnionFind { UnionFind(int n) : p(n, -1), s(n, 0) {} int root(int u) { if (p[u] < 0) return u; int r = root(p[u]); if (r != p[u]) { s[u] += s[p[u]]; p[u] = r; } return r; } int size(int u) { return -p[root(u)]; } bool same(int u, int v) { return root(u) == root(v); } int unite(int u, int v) { u = root(u); v = root(v); if (u == v) return u; if (p[u] > p[v]) swap(u, v); p[u] += p[v]; p[v] = u; s[v] -= s[u]; return u; } void add(int u, int a) { s[root(u)] += a; } int sum(int u) { int r = root(u); return r == u ? s[u] : s[u] + s[r]; } vector<int> p, s; }; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, q; cin >> n >> q; UnionFind uf(n); for (int _ = 0; _ < q; _++) { int t, a, b; cin >> t >> a >> b; a--; if (t == 1) { b--; if (!uf.same(a, b)) uf.unite(a, b); } else if (t == 2) { uf.add(a, b); } else { cout << uf.sum(a) << '\n'; } } return 0; }