結果
問題 | No.994 ばらばらコイン |
ユーザー | neterukun |
提出日時 | 2020-02-21 21:30:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 634 bytes |
コンパイル時間 | 539 ms |
コンパイル使用メモリ | 81,280 KB |
実行使用メモリ | 97,280 KB |
最終ジャッジ日時 | 2024-10-08 21:12:55 |
合計ジャッジ時間 | 3,936 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 143 ms
87,040 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 141 ms
83,072 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 40 ms
53,376 KB |
testcase_17 | AC | 42 ms
53,376 KB |
testcase_18 | AC | 43 ms
53,888 KB |
testcase_19 | AC | 43 ms
53,760 KB |
testcase_20 | AC | 44 ms
53,632 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
from collections import deque n, k = list(map(int, input().split())) info = [list(map(int, input().split())) for i in range(n - 1)] tree = [[] for i in range(n)] for i in range(n - 1): a, b = info[i] a -= 1 b -= 1 tree[a].append(b) tree[b].append(a) if n < k: print(-1) exit() start = 0 visited = [-1] * n q = deque([0]) visited[0] = 0 while q: pos = q.popleft() for next_pos in tree[pos]: if visited[next_pos] >= 0: continue else: visited[next_pos] = visited[pos] + 1 q.append(next_pos) visited = sorted(visited) print(sum(visited[0:k]))