結果
問題 | No.806 木を道に |
ユーザー | ttr |
提出日時 | 2020-02-08 21:17:21 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 656 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-10-01 05:23:49 |
合計ジャッジ時間 | 7,994 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 31 ms
10,752 KB |
testcase_08 | AC | 30 ms
11,008 KB |
testcase_09 | AC | 30 ms
10,752 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 | 264 ms
23,680 KB |
testcase_25 | AC | 396 ms
30,336 KB |
testcase_26 | AC | 161 ms
16,640 KB |
testcase_27 | AC | 462 ms
29,952 KB |
testcase_28 | AC | 43 ms
11,136 KB |
ソースコード
N = int(input()) E = [[] for _ in range(N)] for _ in range(N-1): a,b = map(int, input().split()) E[a-1].append(b-1) E[b-1].append(a-1) from collections import deque def f(s): q = deque([s]) dist = [-1]*N dist[s] = 1 while q: temp = q.pop() for u in E[temp]: if dist[u] >= 0: continue dist[u] = dist[temp]+1 q.append(u) return dist for i in range(N): if len(E[i]) == 1: dist1 = f(i) break num = 0 for i in range(N): if num < dist1[i]: num = dist1[i] idx = i dist2 = f(idx) num = max(num, max(dist2)) print(N-num)