結果
問題 | No.1054 Union add query |
ユーザー | kappybar |
提出日時 | 2020-05-16 11:42:41 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 167 ms / 2,000 ms |
コード長 | 1,720 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 169,508 KB |
実行使用メモリ | 7,296 KB |
最終ジャッジ日時 | 2024-09-22 04:22:54 |
合計ジャッジ時間 | 4,069 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 154 ms
6,940 KB |
testcase_04 | AC | 167 ms
7,296 KB |
testcase_05 | AC | 153 ms
6,944 KB |
testcase_06 | AC | 146 ms
6,944 KB |
testcase_07 | AC | 134 ms
6,940 KB |
testcase_08 | AC | 140 ms
6,940 KB |
testcase_09 | AC | 167 ms
7,296 KB |
testcase_10 | AC | 107 ms
7,296 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i=0;i<(int)(n);i++) using namespace std; using ll = long long ; using P = pair<int,int> ; using pll = pair<long long,long long>; constexpr int INF = 1e9; constexpr long long LINF = 1e17; constexpr int MOD = 1000000007; struct Unionfind{ vector<int> parents; vector<int> sum; int n; Unionfind(int n):n(n),parents(n,-1),sum(n,0){ } int find(int x){ if(parents[x] < 0) return x; else{ int p = find(parents[x]); return p; } } void unite(int x,int y){ x = find(x); y = find(y); if(x==y) return; if(parents[x] > parents[y]) swap(x,y); parents[x] += parents[y]; parents[y] = x; sum[y] -= sum[x]; } int size(int x){ return -parents[find(x)]; } bool same(int x,int y){ return find(x)==find(y); } void add(int x,int a){ int p = find(x); sum[p] += a; } int count(int x){ if(parents[x] < 0) return sum[x]; else return sum[x] + count(parents[x]); } int get(int x){ int res = 0; while(parents[x] >= 0){ res += sum[x]; x = parents[x]; } res += sum[x]; return res; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n,q; scanf("%d%d",&n,&q); Unionfind uf(n); rep(i,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 if(t==3){ --a; printf("%d\n",uf.get(a)); } } return 0; }