結果
問題 | No.1054 Union add query |
ユーザー | betrue12 |
提出日時 | 2020-05-15 21:44:43 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 174 ms / 2,000 ms |
コード長 | 1,428 bytes |
コンパイル時間 | 2,011 ms |
コンパイル使用メモリ | 203,492 KB |
実行使用メモリ | 9,344 KB |
最終ジャッジ日時 | 2024-09-19 09:08:17 |
合計ジャッジ時間 | 4,294 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 147 ms
6,944 KB |
testcase_04 | AC | 174 ms
9,216 KB |
testcase_05 | AC | 145 ms
6,940 KB |
testcase_06 | AC | 139 ms
6,940 KB |
testcase_07 | AC | 125 ms
6,940 KB |
testcase_08 | AC | 132 ms
6,944 KB |
testcase_09 | AC | 158 ms
9,216 KB |
testcase_10 | AC | 104 ms
9,344 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; struct UnionFind { vector<int> par; vector<int> sz; vector<int> V; UnionFind(int n=0){ if(n>0) initialize(n); } void initialize(int n){ par.resize(n); sz.assign(n, 1); V.assign(n, 0); for(int i=0; i<n; i++){ par[i] = i; } } int find(int x){ if(par[x] == x){ return x; }else{ return find(par[x]); } } int ans(int x){ if(par[x] == x){ return V[x]; }else{ return V[x] + ans(par[x]); } } bool unite(int x, int y){ x = find(x), y = find(y); if(x == y) return false; if(sz[x] > sz[y]) swap(x, y); par[x] = y; sz[y] += sz[x]; V[x] -= V[y]; return true; } bool same(int x, int y){ return find(x) == find(y); } int size(int x){ return sz[find(x)]; } void add(int k, int v){ V[find(k)] += v; } }; int main(){ int N, Q; cin >> N >> Q; UnionFind uf(N); while(Q--){ int t, a, b; scanf("%d %d %d", &t, &a, &b); if(t == 1){ a--; b--; uf.unite(a, b); }else if(t == 2){ a--; uf.add(a, b); }else{ a--; int ans = uf.ans(a); printf("%d\n", ans); } } return 0; }