結果

問題 No.806 木を道に
ユーザー 👑 KazunKazun
提出日時 2020-10-27 16:12:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 461 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 113,296 KB
最終ジャッジ日時 2024-07-21 21:56:58
合計ジャッジ時間 6,667 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 43 ms
53,248 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
53,760 KB
testcase_08 AC 43 ms
53,248 KB
testcase_09 AC 44 ms
54,144 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
92,416 KB
testcase_25 AC 171 ms
100,772 KB
testcase_26 AC 124 ms
88,444 KB
testcase_27 AC 212 ms
113,296 KB
testcase_28 AC 85 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(v):
    T=[-1]*(N+1)
    T[v]=0
    Q=deque([v])

    while Q:
        w=Q.popleft()
        for u in E[w]:
            if T[u]==-1:
                T[u]=T[w]+1
                Q.append(u)

    x=max(range(1,N+1),key=lambda x:T[x])
    return x,T[x]

N=int(input())
E=[set() for _ in range(N+1)]

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

u,_=bfs(1)
_,d=bfs(u)

print((N-1)-d)
0