結果
問題 | No.1390 Get together |
ユーザー | Mitarushi |
提出日時 | 2021-02-12 22:32:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,512 bytes |
コンパイル時間 | 2,036 ms |
コンパイル使用メモリ | 203,016 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-07-19 23:13:33 |
合計ジャッジ時間 | 4,255 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 46 ms
6,400 KB |
testcase_17 | AC | 43 ms
6,272 KB |
testcase_18 | AC | 49 ms
6,272 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <bits/stdc++.h> template<class T> void print(const T &t) { std::cout << t << '\n'; } template<class Head, class... Tail> void print(const Head &head, const Tail &... tail) { std::cout << head << ' '; print(tail...); } template<typename T> using v = std::vector<T>; using ll = long long; using std::cin; struct UnionFind { v<int> parent, rank, count; explicit UnionFind(int n) : parent(n, -1), rank(n, 1), count(n, 1) { } int get_root(int n) { if (parent[n] == -1) { return n; } else { return parent[n] = get_root(parent[n]); } } bool is_same(int i, int j) { return get_root(i) == get_root(j); } void merge(int i, int j) { i = get_root(i); j = get_root(j); if (i == j) { return; } if (rank[i] < rank[j]) { std::swap(i, j); } parent[j] = i; rank[i] = std::max(rank[i], rank[j] + 1); count[i] += count[j]; } }; int main() { std::ios::sync_with_stdio(false); std::cin.tie(nullptr); std::cout.tie(nullptr); int n, m; cin >> n >> m; v<int> col(n, -1); UnionFind uf(m); for (int i = 0; i < n; ++i) { int b, c; cin >> b >> c; b--; c--; if (col[c] != -1) { uf.merge(b, col[c]); } col[c] = b; } int ans = 0; for (auto &i: uf.count) { ans += i - 1; } print(ans); }