結果

問題 No.994 ばらばらコイン
ユーザー kohei2019kohei2019
提出日時 2021-02-03 21:07:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 170,640 KB
最終ジャッジ日時 2024-06-30 04:43:51
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,200 KB
testcase_01 AC 43 ms
55,464 KB
testcase_02 AC 292 ms
170,640 KB
testcase_03 AC 307 ms
89,884 KB
testcase_04 AC 235 ms
89,848 KB
testcase_05 AC 136 ms
83,216 KB
testcase_06 AC 221 ms
89,732 KB
testcase_07 AC 251 ms
89,736 KB
testcase_08 AC 191 ms
85,868 KB
testcase_09 AC 226 ms
89,104 KB
testcase_10 AC 189 ms
85,672 KB
testcase_11 AC 205 ms
87,304 KB
testcase_12 AC 220 ms
87,968 KB
testcase_13 AC 42 ms
54,044 KB
testcase_14 AC 42 ms
55,716 KB
testcase_15 AC 40 ms
54,524 KB
testcase_16 AC 44 ms
54,504 KB
testcase_17 AC 40 ms
55,100 KB
testcase_18 AC 42 ms
54,276 KB
testcase_19 AC 41 ms
54,772 KB
testcase_20 AC 41 ms
55,056 KB
testcase_21 AC 40 ms
55,740 KB
testcase_22 AC 40 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import sys
sys.setrecursionlimit(10**7)
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