結果
問題 | No.1054 Union add query |
ユーザー | tko919 |
提出日時 | 2021-08-27 20:07:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 377 ms / 2,000 ms |
コード長 | 1,642 bytes |
コンパイル時間 | 2,017 ms |
コンパイル使用メモリ | 214,644 KB |
実行使用メモリ | 75,772 KB |
最終ジャッジ日時 | 2024-04-30 23:55:24 |
合計ジャッジ時間 | 5,496 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 304 ms
28,080 KB |
testcase_04 | AC | 377 ms
75,772 KB |
testcase_05 | AC | 225 ms
15,744 KB |
testcase_06 | AC | 302 ms
40,184 KB |
testcase_07 | AC | 225 ms
40,204 KB |
testcase_08 | AC | 268 ms
40,148 KB |
testcase_09 | AC | 267 ms
63,980 KB |
testcase_10 | AC | 154 ms
63,868 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> using namespace std; //template #define rep(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define ALL(v) (v).begin(),(v).end() using ll=long long int; const int inf = 0x3fffffff; const ll INF = 0x1fffffffffffffff; const double eps=1e-12; template<typename T>inline bool chmax(T& a,T b){if(a<b){a=b;return 1;}return 0;} template<typename T>inline bool chmin(T& a,T b){if(a>b){a=b;return 1;}return 0;} struct UnionFind{ vector<int> par; int n; UnionFind(){} UnionFind(int _n):par(_n,-1),n(_n){} int root(int x){return par[x]<0?x:par[x]=root(par[x]);} bool same(int x,int y){return root(x)==root(y);} int size(int x){return -par[root(x)];} bool unite(int x,int y){ x=root(x),y=root(y); if(x==y)return false; if(size(x)>size(y))swap(x,y); par[y]+=par[x]; par[x]=y; n--; return true; } }; using P=pair<map<int,ll>,ll>; void merge(P& a,P& b){ if(a.first.size()<b.first.size())swap(a,b); for(auto& [i,v]:b.first){ a.first[i]=v+b.second-a.second; } } int main(){ int n,q; cin>>n>>q; vector<P> V(n); UnionFind uni(n); rep(i,0,n)V[i].first[i]=0; while(q--){ int t,a,b; scanf("%d%d%d",&t,&a,&b); if(t==1){ a--; b--; a=uni.root(a); b=uni.root(b); if(a==b)continue; merge(V[a],V[b]); uni.unite(a,b); swap(V[uni.root(a)],V[a]); } else if(t==2){ a--; V[uni.root(a)].second+=b; } else{ a--; int r=uni.root(a); printf("%lld\n",V[r].first[a]+V[r].second); } } return 0; }