結果
問題 | No.2072 Anatomy |
ユーザー | ruthen71 |
提出日時 | 2022-09-16 22:05:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 1,477 bytes |
コンパイル時間 | 2,854 ms |
コンパイル使用メモリ | 204,272 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-12-21 20:35:05 |
合計ジャッジ時間 | 4,441 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 44 ms
5,888 KB |
testcase_09 | AC | 42 ms
6,016 KB |
testcase_10 | AC | 45 ms
5,632 KB |
testcase_11 | AC | 45 ms
5,888 KB |
testcase_12 | AC | 35 ms
5,248 KB |
testcase_13 | AC | 48 ms
6,144 KB |
testcase_14 | AC | 30 ms
5,248 KB |
testcase_15 | AC | 28 ms
5,248 KB |
testcase_16 | AC | 48 ms
6,272 KB |
testcase_17 | AC | 45 ms
6,144 KB |
testcase_18 | AC | 25 ms
5,248 KB |
testcase_19 | AC | 49 ms
6,272 KB |
testcase_20 | AC | 50 ms
6,400 KB |
testcase_21 | AC | 45 ms
6,272 KB |
testcase_22 | AC | 50 ms
6,400 KB |
testcase_23 | AC | 46 ms
6,400 KB |
testcase_24 | AC | 46 ms
6,400 KB |
testcase_25 | AC | 49 ms
6,400 KB |
testcase_26 | AC | 2 ms
5,248 KB |
testcase_27 | AC | 47 ms
6,272 KB |
testcase_28 | AC | 46 ms
6,272 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #ifdef _RUTHEN #include <debug.hpp> #else #define show(...) true #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); i++) template <class T> using V = vector<T>; struct unionfind { std::vector<int> parents; unionfind() {} unionfind(int n) : parents(n, -1) {} int leader(int x) { return parents[x] < 0 ? x : parents[x] = leader(parents[x]); } bool merge(int x, int y) { x = leader(x), y = leader(y); if (x == y) return false; if (parents[x] > parents[y]) std::swap(x, y); parents[x] += parents[y]; parents[y] = x; return true; } bool same(int x, int y) { return leader(x) == leader(y); } int size(int x) { return -parents[leader(x)]; } void init(int n) { parents.assign(n, -1); } // reset }; /** * @brief UnionFind * @docs docs/data_structure/unionfind.md */ int main() { ios::sync_with_stdio(false); cin.tie(0); int N, M; cin >> N >> M; V<int> A(M), B(M); rep(i, M) { cin >> A[i] >> B[i]; A[i]--, B[i]--; } reverse(A.begin(), A.end()); reverse(B.begin(), B.end()); V<int> t(N); unionfind uf(N); rep(i, M) { int x = uf.leader(A[i]), y = uf.leader(B[i]); int r = max(t[x], t[y]); t[x] = t[y] = r + 1; uf.merge(A[i], B[i]); } int ans = *max_element(t.begin(), t.end()); cout << ans << '\n'; return 0; }