結果

問題 No.2072 Anatomy
ユーザー NAMIDAIRONAMIDAIRO
提出日時 2022-09-16 21:57:29
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 1,326 bytes
コンパイル時間 1,183 ms
コンパイル使用メモリ 103,936 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-12-21 19:56:31
合計ジャッジ時間 5,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <set>
#include <random>
#include <iomanip>
using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)

template<class T>
using vi = vector<T>;

template<class T>
using vii = vector<vi<T>>;

template<class T>
using viii = vector<vii<T>>;


struct unionfind {
    vector<int> d;
    vector<int> cnt;
    unionfind(int n = 0) : cnt(n) {
        d = vector<int>(n, -1);
    }

    int find(int x) {
        if (d[x] < 0) return x;
        return d[x] = find(d[x]);
    }

    bool unite(int x, int y) {
        int rx = find(x);
        int ry = find(y);
        if (rx == ry) {
            cnt[rx]++;
            return false;
        }
        if (d[rx] > d[ry]) swap(rx, ry);
        d[rx] += d[ry];
        d[ry] = rx;
        cnt[rx] = max(cnt[rx], cnt[ry]) + 1;
        return true;
    }

    bool same(int x, int y) { return find(x) == find(y); }

    int size(int x) { return -d[find(x)]; }
};



int main()
{
    int n, m;
    cin >> n >> m;
    
    unionfind uf(n);
    vi<int> u(m), v(m);
    rep(i, m) cin >> u[i] >> v[i];
    rep(i, m) u[i]--, v[i]--;

    for (int i = m - 1; i >= 0; i--) uf.unite(u[i], v[i]);
    int rt = uf.find(0);
    cout << uf.cnt[rt] << endl;
    return 0;
}
0