結果

問題 No.994 ばらばらコイン
ユーザー integerinteger
提出日時 2020-05-02 17:32:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 793 bytes
コンパイル時間 853 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,000 KB
最終ジャッジ日時 2024-06-09 18:48:51
合計ジャッジ時間 9,227 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 317 ms
30,464 KB
testcase_03 AC 410 ms
47,872 KB
testcase_04 AC 387 ms
47,872 KB
testcase_05 AC 208 ms
29,312 KB
testcase_06 AC 452 ms
47,872 KB
testcase_07 AC 391 ms
48,000 KB
testcase_08 AC 219 ms
24,320 KB
testcase_09 AC 387 ms
45,568 KB
testcase_10 AC 269 ms
36,480 KB
testcase_11 AC 334 ms
39,808 KB
testcase_12 AC 339 ms
42,112 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 25 ms
10,752 KB
testcase_20 AC 25 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

def main():
    n, k = map(int, input().split())
    e = [list(map(int, input().split())) for _ in range(n - 1)]
    ans = solve(n, k, e)
    print(ans)


def solve(n, k, e):
    if n < k:
        return -1
    g = [[] for _ in range(n)]
    for (x, y) in e:
        x, y = x - 1, y - 1
        g[x].append(y)
        g[y].append(x)

    arrived = [False for _ in range(n)]
    q = collections.deque()
    q.append(0)
    coins = 0
    ans = -1
    while len(q):
        v = q.popleft()
        if not arrived[v]:
            arrived[v] = True
            coins += 1
            ans += 1
            if coins == k:
                break
            for i in g[v]:
                q.append(i)
    else:
        return -1
    return ans

if __name__ == '__main__':
    main()
0