結果

問題 No.2532 Want Play More
ユーザー hitonanodehitonanode
提出日時 2023-11-03 22:33:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 1,135 ms
コンパイル使用メモリ 92,044 KB
実行使用メモリ 20,988 KB
最終ジャッジ日時 2024-09-25 20:57:29
合計ジャッジ時間 3,248 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 101 ms
14,136 KB
testcase_02 AC 103 ms
14,160 KB
testcase_03 AC 104 ms
13,692 KB
testcase_04 AC 100 ms
13,696 KB
testcase_05 AC 90 ms
13,252 KB
testcase_06 AC 64 ms
20,988 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 45 ms
8,320 KB
testcase_11 AC 44 ms
8,192 KB
testcase_12 AC 73 ms
11,508 KB
testcase_13 AC 50 ms
9,088 KB
testcase_14 AC 16 ms
6,944 KB
testcase_15 AC 106 ms
14,124 KB
testcase_16 AC 82 ms
12,444 KB
testcase_17 AC 4 ms
6,940 KB
testcase_18 AC 60 ms
10,368 KB
testcase_19 AC 84 ms
12,588 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 47 ms
14,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

int main() {
    cin.tie(nullptr)->sync_with_stdio(false);

    int N;
    cin >> N;
    vector<vector<int>> to(N);
    for (int e = 0; e < N - 1; ++e) {
        int a, b;
        cin >> a >> b;
        --a, --b;
        to.at(a).push_back(b);
        to.at(b).push_back(a);
    }

    auto rec = [&](auto &&self, int now, int prv, bool f) -> int {
        int cur = f ? 0 : 1 << 20;

        int nch = 0;
        for (int nxt : to.at(now)) {
            if (nxt == prv) continue;
            ++nch;
            if (int tmp = self(self, nxt, now, !f) + 1; (f and cur < tmp) or (!f and cur > tmp)) cur = tmp;
        }

        return nch ? cur : 0;
    };

    cout << rec(rec, 0, -1, true) << '\n';
    cout << rec(rec, 0, -1, false) << '\n';
}
0