結果
問題 | No.806 木を道に |
ユーザー | kept1994 |
提出日時 | 2021-08-31 19:43:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 831 bytes |
コンパイル時間 | 195 ms |
コンパイル使用メモリ | 82,008 KB |
実行使用メモリ | 97,536 KB |
最終ジャッジ日時 | 2024-11-26 02:34:26 |
合計ジャッジ時間 | 5,637 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
54,496 KB |
testcase_01 | AC | 43 ms
54,188 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 38 ms
55,072 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 38 ms
55,256 KB |
testcase_08 | AC | 37 ms
54,284 KB |
testcase_09 | AC | 38 ms
54,120 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 | 127 ms
90,496 KB |
testcase_25 | AC | 147 ms
97,536 KB |
testcase_26 | AC | 108 ms
81,792 KB |
testcase_27 | AC | 156 ms
91,476 KB |
testcase_28 | AC | 76 ms
73,472 KB |
ソースコード
#!/usr/bin/env python3 import sys def main(): from collections import deque N = int(input()) INF = 10 ** 16 G = [[] for _ in range(N)] def bfs(edges: "List[to]", start_node: int) -> list: q = deque() dist = [INF] * len(edges) q.append(start_node) dist[start_node] = 0 while q: now = q.popleft() for next in edges[now]: if dist[next] != INF: continue q.append(next) dist[next] = dist[now] + 1 return dist for _ in range(N - 1): a, b = map(int, input().split()) G[a - 1].append(b - 1) G[b - 1].append(a - 1) d = bfs(G, 0) i = d.index(max(d)) dd = bfs(G, i) print(N - len(set(dd))) if __name__ == '__main__': main()