結果

問題 No.2072 Anatomy
ユーザー ripityripity
提出日時 2022-10-30 13:05:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 109 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 3,595 ms
コンパイル使用メモリ 264,264 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 05:23:40
合計ジャッジ時間 8,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 92 ms
6,944 KB
testcase_09 AC 100 ms
6,940 KB
testcase_10 AC 97 ms
6,940 KB
testcase_11 AC 101 ms
6,940 KB
testcase_12 AC 80 ms
6,940 KB
testcase_13 AC 106 ms
6,940 KB
testcase_14 AC 67 ms
6,944 KB
testcase_15 AC 62 ms
6,940 KB
testcase_16 AC 105 ms
6,940 KB
testcase_17 AC 102 ms
6,940 KB
testcase_18 AC 54 ms
6,940 KB
testcase_19 AC 109 ms
6,944 KB
testcase_20 AC 109 ms
6,940 KB
testcase_21 AC 104 ms
6,944 KB
testcase_22 AC 108 ms
6,940 KB
testcase_23 AC 106 ms
6,944 KB
testcase_24 AC 105 ms
6,940 KB
testcase_25 AC 106 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 106 ms
6,944 KB
testcase_28 AC 105 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
int main() {
  int N, M, ans = 0;
  cin >> N >> M;
  dsu uf(N);
  vector<int> u(M), v(M), dp(N);
  for( int i = 0; i < M; i++ ) {
    cin >> u[i] >> v[i];
    u[i]--; v[i]--;
  }
  reverse(u.begin(), u.end());
  reverse(v.begin(), v.end());
  for( int i = 0; i < M; i++ ) {
    int ul = uf.leader(u[i]), vl = uf.leader(v[i]), m = max(dp[ul], dp[vl]);
    dp[ul] = m+1;
    dp[vl] = m+1;
    uf.merge(u[i], v[i]);
  }
  for( int i = 0; i < N; i++ ) {
    ans = max(ans, dp[i]);
  }
  cout << ans << endl;
}
0