結果

問題 No.2072 Anatomy
ユーザー やうやう
提出日時 2022-09-16 22:13:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 172,172 KB
実行使用メモリ 9,856 KB
最終ジャッジ日時 2024-06-01 13:17:47
合計ジャッジ時間 5,534 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 113 ms
8,832 KB
testcase_09 AC 122 ms
9,216 KB
testcase_10 AC 123 ms
8,704 KB
testcase_11 AC 122 ms
9,216 KB
testcase_12 AC 101 ms
8,192 KB
testcase_13 AC 125 ms
9,344 KB
testcase_14 AC 83 ms
7,552 KB
testcase_15 AC 75 ms
7,680 KB
testcase_16 AC 131 ms
9,344 KB
testcase_17 AC 123 ms
9,472 KB
testcase_18 AC 66 ms
7,168 KB
testcase_19 AC 128 ms
9,472 KB
testcase_20 AC 128 ms
9,600 KB
testcase_21 AC 127 ms
9,600 KB
testcase_22 AC 132 ms
9,472 KB
testcase_23 AC 126 ms
9,600 KB
testcase_24 AC 123 ms
9,728 KB
testcase_25 AC 127 ms
9,344 KB
testcase_26 AC 3 ms
6,944 KB
testcase_27 AC 127 ms
9,856 KB
testcase_28 AC 126 ms
9,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<ll,ll>;
using V=vector<ll>;
#define rep(i,n) for(int i=0;i<n;i++)
#define REP(i,n) for(int i=1;i<=n;i++)

V k(202020,-1);

int root(int x){
    if(k[x]<0) return x;
    return k[x]=root(k[x]);
}

void unite(int x,int y){
    x=root(x); y=root(y);
    if(x==y) return;
    k[y]=x;
}

int main(){
    int n,m;
    cin >> n >> m;
    V u(m),v(m);
    rep(i,m){
        cin >> u[i] >> v[i];
        u[i]--;
        v[i]--;
    }
    reverse(u.begin(),u.end());
    reverse(v.begin(),v.end());
    
    V a(n); ll ans=0;
    rep(i,m){
        a[root(u[i])]=a[root(v[i])]=max(a[root(u[i])],a[root(v[i])])+1;
        unite(u[i],v[i]);
    }
    rep(i,n) ans=max(ans,a[i]);
    cout << ans << endl;
}
0