結果

問題 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
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,176 KB
最終ジャッジ日時 2024-04-15 09:05:19
合計ジャッジ時間 7,090 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 32 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 33 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 33 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 172 ms
23,680 KB
testcase_25 AC 245 ms
30,464 KB
testcase_26 AC 106 ms
16,868 KB
testcase_27 AC 291 ms
30,016 KB
testcase_28 AC 38 ms
11,136 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