結果

問題 No.994 ばらばらコイン
ユーザー kbyskbys
提出日時 2020-03-29 00:35:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 10,908 KB
実行使用メモリ 26,884 KB
最終ジャッジ日時 2023-08-30 18:22:56
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 333 ms
25,056 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 261 ms
19,896 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 18 ms
8,640 KB
testcase_17 AC 19 ms
8,536 KB
testcase_18 AC 18 ms
8,636 KB
testcase_19 AC 19 ms
8,524 KB
testcase_20 AC 18 ms
8,520 KB
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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)
0