結果

問題 No.2532 Want Play More
ユーザー coindarwcoindarw
提出日時 2023-11-03 22:55:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,689 bytes
コンパイル時間 4,395 ms
コンパイル使用メモリ 266,960 KB
実行使用メモリ 37,740 KB
最終ジャッジ日時 2023-11-03 22:55:48
合計ジャッジ時間 7,541 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 162 ms
15,828 KB
testcase_02 AC 136 ms
15,828 KB
testcase_03 AC 124 ms
15,300 KB
testcase_04 AC 111 ms
15,300 KB
testcase_05 AC 115 ms
15,036 KB
testcase_06 AC 83 ms
37,740 KB
testcase_07 AC 3 ms
4,348 KB
testcase_08 AC 4 ms
4,348 KB
testcase_09 AC 4 ms
4,348 KB
testcase_10 AC 44 ms
9,032 KB
testcase_11 AC 43 ms
9,032 KB
testcase_12 AC 88 ms
12,660 KB
testcase_13 AC 57 ms
10,088 KB
testcase_14 AC 17 ms
5,612 KB
testcase_15 AC 155 ms
15,828 KB
testcase_16 AC 104 ms
13,716 KB
testcase_17 AC 4 ms
4,348 KB
testcase_18 AC 74 ms
11,408 KB
testcase_19 AC 116 ms
13,980 KB
testcase_20 AC 2 ms
4,348 KB
testcase_21 AC 2 ms
4,348 KB
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 AC 2 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
testcase_28 AC 54 ms
16,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef ONLINE_JUDGE
#include <bits/stdc++.h>

#include <atcoder/all>
#else
#include <mylibs/all.h>
#endif

using ll = long long;
using lll = __int128_t;
#define rep(i, n) for (int i = 0, i##_len = (n); i < i##_len; ++i)
#define reps(i, n) for (int i = 1, i##_len = (n); i <= i##_len; ++i)
#define rrep(i, n) for (int i = ((int)(n)-1); i >= 0; --i)
#define rreps(i, n) for (int i = ((int)(n)); i > 0; --i)
#define rep2(i, s, n) for (int i = (s); i < (int)(n); i++)
#define repc2(i, s, n) for (int i = (s); i <= (int)(n); i++)
#define length(v) ((int)(v).size())
constexpr int inf = 2'000'000'000;
constexpr ll linf = 4'000'000'000'000'000'000, M7 = 1'000'000'007, M9 = 998'244'353;
#define all(v) begin(v), end(v)
#define rall(v) rbegin(v), rend(v)
using namespace std;
using namespace atcoder;

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    int n;
    cin >> n;
    struct edge {
        int to;
        edge(int to) : to(to) {}
    };
    vector<vector<edge>> G(n);
    rep(i, n - 1) {
        int a, b;
        cin >> a >> b;
        a--, b--;
        G[a].emplace_back(b);
        G[b].emplace_back(a);
    }
    vector<bool> seen(n);
    vector<int> mx(n), mn(n, inf);
    auto dfs = [&](auto dfs, int u) -> void {
        seen.at(u) = true;
        int cnt = 0;
        for (const auto& e : G.at(u)) {
            if (seen.at(e.to)) continue;
            dfs(dfs, e.to);
            mx.at(u) = max(mx.at(u), mn.at(e.to) + 1);
            mn.at(u) = min(mn.at(u), mx.at(e.to) + 1);
            cnt++;
        }
        if (cnt == 0) mx.at(u) = mn.at(u) = 0;
    };
    dfs(dfs, 0);
    cout << mx.at(0) << endl;
    cout << mn.at(0) << endl;
    return 0;
}
0