結果

問題 No.994 ばらばらコイン
ユーザー RiburaRibura
提出日時 2020-05-01 01:25:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 499 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 24,704 KB
最終ジャッジ日時 2024-12-21 09:13:19
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 239 ms
24,704 KB
testcase_03 AC 222 ms
23,296 KB
testcase_04 AC 209 ms
23,552 KB
testcase_05 AC 123 ms
17,152 KB
testcase_06 WA -
testcase_07 AC 209 ms
23,296 KB
testcase_08 AC 193 ms
19,456 KB
testcase_09 AC 199 ms
22,528 KB
testcase_10 AC 152 ms
19,456 KB
testcase_11 AC 214 ms
20,608 KB
testcase_12 AC 206 ms
21,632 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 30 ms
10,624 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 31 ms
10,624 KB
testcase_19 AC 31 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

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)


def dfs(s):
    global k
    cnt = -1
    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 == 0:
                print(cnt)
                exit()
            stack.appendleft(next)


dfs(0)
print(-1)
0