結果

問題 No.2072 Anatomy
ユーザー kenskens
提出日時 2022-09-16 21:59:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 2,530 ms
コンパイル使用メモリ 208,604 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-06-01 12:56:09
合計ジャッジ時間 6,598 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 114 ms
7,168 KB
testcase_09 AC 125 ms
7,552 KB
testcase_10 AC 119 ms
6,944 KB
testcase_11 AC 125 ms
7,424 KB
testcase_12 AC 96 ms
6,940 KB
testcase_13 AC 130 ms
7,808 KB
testcase_14 AC 81 ms
6,940 KB
testcase_15 AC 77 ms
6,944 KB
testcase_16 AC 129 ms
7,808 KB
testcase_17 AC 126 ms
7,680 KB
testcase_18 AC 65 ms
6,940 KB
testcase_19 AC 131 ms
8,064 KB
testcase_20 AC 133 ms
7,936 KB
testcase_21 AC 128 ms
7,936 KB
testcase_22 AC 132 ms
7,936 KB
testcase_23 AC 129 ms
7,936 KB
testcase_24 AC 126 ms
7,936 KB
testcase_25 AC 132 ms
7,936 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 130 ms
7,936 KB
testcase_28 AC 127 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (int)n; i++)
using ll = long long;

class Union_Find{
  vector<int> par; vector<int> rank; vector<int> num;
public:
  Union_Find(int n) {
    par = vector<int>(n); rank = vector<int>(n,0); num = vector<int>(n,1);
    rep(i,n) par[i] = i;
  }
  int find(int x) {
    if(par[x] == x) return x;
    else  return par[x] = find(par[x]);
  }
  int number(int x) {
    return num[find(x)];
  }
  void unite(int x, int y) {
    x = find(x); y = find(y);
    if (x == y) return;
    if (rank[x] < rank[y]) swap(x, y);
    if (rank[x] == rank[y]) rank[x]++;
    par[y] = x;
    num[x] += num[y];
  } 
  bool same(int x, int y) {
    return find(x) == find(y);
  }
};

int main(){
  int n, m;
  cin >> n >> m;
  vector<int> u(m), v(m);
  rep(i,m) {
    cin >> u[i] >> v[i];
    u[i]--; v[i]--;
  }
  vector<int> dp(n);
  Union_Find uf(n);
  for(int i = m-1; i >= 0; i--) {
    if(uf.same(u[i],v[i])) {
      dp[uf.find(u[i])] = dp[uf.find(u[i])] + 1;
    } else {
      int cur = max(dp[uf.find(u[i])],dp[uf.find(v[i])]);
      uf.unite(u[i],v[i]);
      dp[uf.find(u[i])] = cur+1;
    }
  }
  int ans = 0;
  rep(i,n) ans = max(ans,dp[i]);
  cout << ans << endl;
  return 0;
}
0