結果
問題 | No.1054 Union add query |
ユーザー | 沙耶花 |
提出日時 | 2020-05-15 22:00:28 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 250 ms / 2,000 ms |
コード長 | 1,059 bytes |
コンパイル時間 | 2,291 ms |
コンパイル使用メモリ | 205,596 KB |
実行使用メモリ | 35,328 KB |
最終ジャッジ日時 | 2024-09-19 10:26:18 |
合計ジャッジ時間 | 4,958 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 168 ms
10,752 KB |
testcase_04 | AC | 250 ms
35,328 KB |
testcase_05 | AC | 138 ms
7,040 KB |
testcase_06 | AC | 146 ms
17,064 KB |
testcase_07 | AC | 138 ms
17,064 KB |
testcase_08 | AC | 144 ms
16,936 KB |
testcase_09 | AC | 186 ms
34,560 KB |
testcase_10 | AC | 138 ms
34,560 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 10000000000000 int main(){ int N,Q; scanf("%d %d",&N,&Q); vector<vector<int>> childs(N,vector<int>()); vector<int> parent(N,0); for(int i=0;i<N;i++){ childs[i].push_back(i); parent[i] = i; } vector<int> num(N,0); for(int i=0;i<Q;i++){ int T,A,B; scanf("%d %d %d",&T,&A,&B); if(T==1){ A--;B--; if(parent[A]==parent[B])continue; if(childs[parent[A]].size()>childs[parent[B]].size())swap(A,B); int p = parent[A]; int t = num[p]; for(int j=0;j<childs[p].size();j++){ int x = childs[p][j]; if(x!=p)num[x]+=num[p]; parent[x] = parent[B]; } for(int j=0;j<childs[p].size();j++){ int x = childs[p][j]; num[x]-=num[parent[B]]; childs[parent[B]].push_back(x); } } if(T==2){ A--; num[parent[A]]+=B; } if(T==3){ A--; int ans = num[A]; if(parent[A]!=A)ans += num[parent[A]]; printf("%d\n",ans); } } return 0; }