結果

問題 No.994 ばらばらコイン
ユーザー kohei2019kohei2019
提出日時 2021-02-03 21:04:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 651 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 93,160 KB
最終ジャッジ日時 2024-06-30 04:41:47
合計ジャッジ時間 4,505 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,788 KB
testcase_01 AC 43 ms
54,644 KB
testcase_02 RE -
testcase_03 AC 234 ms
89,932 KB
testcase_04 AC 243 ms
89,844 KB
testcase_05 AC 141 ms
83,584 KB
testcase_06 AC 238 ms
89,896 KB
testcase_07 AC 237 ms
89,872 KB
testcase_08 AC 182 ms
85,756 KB
testcase_09 AC 213 ms
88,948 KB
testcase_10 AC 176 ms
86,120 KB
testcase_11 AC 185 ms
87,096 KB
testcase_12 AC 202 ms
87,920 KB
testcase_13 AC 40 ms
54,176 KB
testcase_14 AC 41 ms
54,104 KB
testcase_15 AC 41 ms
54,376 KB
testcase_16 AC 41 ms
54,068 KB
testcase_17 AC 40 ms
54,072 KB
testcase_18 AC 40 ms
54,056 KB
testcase_19 AC 41 ms
54,612 KB
testcase_20 AC 42 ms
55,552 KB
testcase_21 AC 41 ms
53,924 KB
testcase_22 AC 39 ms
55,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,K = map(int,input().split())
lsg = [[] for i in range(N)]
for i in range(N-1):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    lsg[a].append(b)
    lsg[b].append(a)
#できるかどうかの判定が必要
depth = [-1]*(N)
depth[0] = 0
d = collections.deque()
d.append(0)
while d:
    v = d.pop()
    for j in lsg[v]:
        if depth[j] >= 0:
            continue
        depth[j] = depth[v]+1
        d.append(j)
lsc = [-1]*(N)
def dfs(k):
    cnt = 1
    for j in lsg[k]:
        if depth[j] < depth[k]:
            continue
        cnt += dfs(j)
    lsc[k] = cnt
    return cnt
dfs(0)

print(-1 if N < K else K-1)
0