結果

問題 No.2072 Anatomy
ユーザー tokumini_sstokumini_ss
提出日時 2022-09-16 22:09:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 773 bytes
コンパイル時間 2,557 ms
コンパイル使用メモリ 209,532 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-12-21 20:57:04
合計ジャッジ時間 6,663 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 127 ms
7,936 KB
testcase_09 AC 131 ms
8,192 KB
testcase_10 AC 122 ms
7,552 KB
testcase_11 AC 126 ms
8,192 KB
testcase_12 AC 102 ms
6,912 KB
testcase_13 AC 132 ms
8,576 KB
testcase_14 AC 84 ms
6,400 KB
testcase_15 AC 81 ms
6,400 KB
testcase_16 AC 137 ms
8,576 KB
testcase_17 AC 128 ms
8,448 KB
testcase_18 AC 67 ms
6,016 KB
testcase_19 AC 137 ms
8,576 KB
testcase_20 AC 133 ms
8,576 KB
testcase_21 AC 130 ms
8,704 KB
testcase_22 AC 134 ms
8,704 KB
testcase_23 AC 132 ms
8,704 KB
testcase_24 AC 131 ms
8,576 KB
testcase_25 AC 133 ms
8,704 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 131 ms
8,704 KB
testcase_28 AC 136 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#include <atcoder/dsu>

int main() {
    int64_t N, M;
    cin >> N >> M;

    vector<int64_t> u(M), v(M);
    for (int64_t i = 0; i < M; i++) {
        cin >> u[i] >> v[i];
        u[i]--, v[i]--;
    }

    atcoder::dsu dsu(N);
    vector<int64_t> op_num(N, 0);
    for (int64_t i = M - 1; i >= 0; i--) {
        const int64_t lu = dsu.leader(u[i]);
        const int64_t lv = dsu.leader(v[i]);
        if (dsu.same(u[i], v[i])) {
            op_num[lu]++;
            continue;
        }
        const int64_t su = op_num[lu];
        const int64_t sv = op_num[lv];
        const int64_t l = dsu.merge(u[i], v[i]);
        op_num[l] = max(su, sv) + 1;
    }
    cout << *max_element(op_num.begin(), op_num.end()) << endl;
}
0