結果

問題 No.806 木を道に
ユーザー tktk_snsntktk_snsn
提出日時 2021-08-14 11:42:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 530 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-10-05 01:56:14
合計ジャッジ時間 5,553 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 24 ms
10,496 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 27 ms
10,496 KB
testcase_08 AC 27 ms
10,496 KB
testcase_09 AC 26 ms
10,624 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 142 ms
23,424 KB
testcase_25 AC 204 ms
30,080 KB
testcase_26 AC 88 ms
16,484 KB
testcase_27 AC 240 ms
29,760 KB
testcase_28 AC 32 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N = int(input())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)


def dfs(r):
    d = [-1] * N
    d[r] = 0
    que = [r]
    while que:
        s = que.pop()
        for t in G[s]:
            if d[t] == -1:
                d[t] = d[s] + 1
                que.append(t)
    return d


d1 = dfs(0)
r = d1.index(max(d1))
d2 = dfs(r)
print(N - max(d2) - 1)
0