結果

問題 No.994 ばらばらコイン
ユーザー RiburaRibura
提出日時 2020-05-01 01:27:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-12-21 09:16:42
合計ジャッジ時間 4,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 35 ms
10,496 KB
testcase_02 AC 247 ms
24,704 KB
testcase_03 AC 231 ms
23,424 KB
testcase_04 AC 222 ms
23,424 KB
testcase_05 AC 132 ms
16,896 KB
testcase_06 AC 287 ms
23,424 KB
testcase_07 AC 220 ms
23,424 KB
testcase_08 AC 199 ms
19,456 KB
testcase_09 AC 220 ms
22,528 KB
testcase_10 AC 159 ms
19,456 KB
testcase_11 AC 225 ms
20,480 KB
testcase_12 AC 204 ms
21,248 KB
testcase_13 AC 35 ms
10,496 KB
testcase_14 AC 33 ms
10,624 KB
testcase_15 AC 32 ms
10,496 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 33 ms
10,624 KB
testcase_18 AC 35 ms
10,624 KB
testcase_19 AC 34 ms
10,624 KB
testcase_20 AC 33 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)

from collections import deque

n, k = map(int, readline().split())
graph = [[] for _ in range(n)]
for i in range(n - 1):
    a, b = map(int, readline().split())
    graph[a - 1].append(b - 1)
if k == 1:
    print(0)
    exit()


def dfs(s):
    global k
    cnt = 0
    check = [False] * n
    stack = deque([s])
    while stack:
        now = stack.pop()
        check[now] = True
        for next in graph[now]:
            if check[next]:
                continue
            k -= 1
            cnt += 1
            if k == 1:
                print(cnt)
                exit()
            stack.appendleft(next)


dfs(0)
print(-1)
0