結果

問題 No.806 木を道に
ユーザー nebukuro09nebukuro09
提出日時 2019-03-22 21:28:53
言語 D
(dmd 2.106.1)
結果
WA  
実行時間 -
コード長 767 bytes
コンパイル時間 912 ms
コンパイル使用メモリ 119,804 KB
実行使用メモリ 23,756 KB
最終ジャッジ日時 2024-06-13 04:23:50
合計ジャッジ時間 3,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 56 ms
14,916 KB
testcase_25 AC 87 ms
23,756 KB
testcase_26 AC 31 ms
6,944 KB
testcase_27 AC 92 ms
13,248 KB
testcase_28 AC 4 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

immutable long MOD = 10^^9 + 7;

void main() {
    auto N = readln.chomp.to!int;
    auto G = new int[][](N);
    foreach (_; 0..N-1) {
        auto s = readln.split.map!(to!int);
        G[s[0]-1] ~= s[1]-1;
        G[s[1]-1] ~= s[0]-1;
    }

    Tuple!(int, int) dfs(int n, int p, int d) {
        Tuple!(int, int) ret = tuple(d, n);
        foreach (m; G[n]) {
            if (m == p) continue;
            ret = max(ret, dfs(m, n, d+1));
        }
        return ret;
    }

    auto x = dfs(0, -1, 0);
    auto y = dfs(x[1], -1, 0);

    writeln(N - y[0] - 1);
}
0