結果
問題 | No.1054 Union add query |
ユーザー | niuez |
提出日時 | 2020-05-16 21:24:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 33 ms / 2,000 ms |
コード長 | 2,784 bytes |
コンパイル時間 | 2,583 ms |
コンパイル使用メモリ | 184,232 KB |
実行使用メモリ | 13,952 KB |
最終ジャッジ日時 | 2024-09-22 19:12:00 |
合計ジャッジ時間 | 4,022 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | AC | 33 ms
13,952 KB |
testcase_05 | AC | 29 ms
10,368 KB |
testcase_06 | AC | 25 ms
12,160 KB |
testcase_07 | AC | 20 ms
11,648 KB |
testcase_08 | AC | 25 ms
11,904 KB |
testcase_09 | AC | 28 ms
13,568 KB |
testcase_10 | AC | 15 ms
11,264 KB |
ソースコード
#pragma GCC target ("avx2") #pragma GCC optimize ("Ofast") #include <vector> #include <tuple> #include <iostream> #include <unistd.h> namespace niu { struct fastin { static const int bufsize = 1 << 24; char buf[bufsize]; char* iter; fastin() { iter = buf; for(int t = 0, k; (k = read(STDIN_FILENO, buf + t, sizeof(buf)) - t) > 0; t += k); } fastin& operator>>(int& num) { num = 0; bool neg = false; while(*iter < '+') iter++; if(*iter == '-') { neg = true; iter++; } else if(*iter == '+') iter++; while(*iter >= '0') num = 10 * num + *(iter++) - '0'; if(neg) num = -num; return *this; } } fin; struct fastout { static const int bufsize = 1 << 24; char buf[bufsize]; char* iter; fastout() { iter = buf; } ~fastout() { for(int t = 0, k; (k = write(STDOUT_FILENO, buf + t, iter - buf - t)) > 0; t += k); } fastout& operator<<(int num) { static char tmp[20]; if(num == 0) { *(iter++) = '0'; return *this; } if(num < 0) { *(iter++) = '-'; num = -num; } int i = 0; while(num) { tmp[i++] = num % 10; num /= 10; } while(i--) { *(iter++) = tmp[i] + '0'; } return *this; } fastout& operator<<(char c) { *(iter++) = c; return *this; } } fout; } struct union_find { std::vector<int> par; std::vector<int> Sigma; union_find(int N): par(N, -1) , Sigma(N, 0) { } int root(int x) { if(par[x] < 0) { return x; } int v = x; while(par[par[v]] >= 0) { v = par[v]; Sigma[x] += Sigma[v]; } par[x] = par[v]; return par[v]; } std::tuple<int, int> unite(int x, int y) { x = root(x); y = root(y); if(x == y) return { -1, -1 }; if(par[x] > par[y]) std::swap(x, y); par[x] += par[y]; par[y] = x; Sigma[y] -= Sigma[x]; return { x, y }; } void add(int v, int a) { Sigma[root(v)] += a; } int value(int v) { int r = root(v); if(r == v) { return Sigma[v]; } else { return Sigma[v] + Sigma[r]; } } }; #include <bits/stdc++.h> using namespace std; using i64 = long long; #define rep(i,s,e) for(i64 (i) = (s);(i) < (e);(i)++) #define all(x) x.begin(),x.end() int main() { int N, Q; niu::fin >> N >> Q; union_find uf(N); while(Q--) { int t, a, b; niu::fin >> t >> a >> b; a--; if(t == 1) { b--; uf.unite(a, b); } else if(t == 2) { uf.add(a, b); } else { niu::fout << uf.value(a) << '\n'; } /* cout << Q << endl; rep(i,0,N) { cout << i << " = " << uf.Sigma[i] << " " << uf.par[i] << endl; }*/ } }