結果
問題 | No.994 ばらばらコイン |
ユーザー | kbys |
提出日時 | 2020-03-29 00:35:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 632 bytes |
コンパイル時間 | 103 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 29,256 KB |
最終ジャッジ日時 | 2024-06-10 17:57:35 |
合計ジャッジ時間 | 6,476 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 380 ms
27,136 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 287 ms
22,272 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 | 29 ms
10,752 KB |
testcase_17 | AC | 28 ms
10,752 KB |
testcase_18 | AC | 29 ms
10,752 KB |
testcase_19 | AC | 29 ms
10,752 KB |
testcase_20 | AC | 30 ms
10,752 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#994 from collections import deque N,K = map(int,input().split()) edge = [[] for _ in range(N)] for _ in range(N-1): a,b = map(int,input().split()) edge[a-1].append(b-1) edge[b-1].append(a-1) if N < K: print(-1) else: distance = [-1]*N distance[0] = 0 q = deque([0]) while q: now = q.popleft() for v in edge[now]: if distance[v] != -1: continue else: distance[v] = distance[now]+1 q.append(v) distance.sort() dist = distance[1:] ans = 0 for i in range(K-1): ans += dist[i] print(ans)