結果
問題 |
No.994 ばらばらコイン
|
ユーザー |
|
提出日時 | 2022-08-17 14:14:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 547 bytes |
コンパイル時間 | 370 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 88,960 KB |
最終ジャッジ日時 | 2024-10-04 15:37:06 |
合計ジャッジ時間 | 4,119 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 17 WA * 6 |
ソースコード
from collections import deque n,k = map(int,input().split()) ab = [[] for i in range(n)] for i in range(n-1): a,b = map(int,input().split()) a -= 1 b -= 1 ab[a].append(b) ab[b].append(a) d = deque() d.append(0) chk = [0]*(n) chk[0] = 1 f = False cnt = 0 while len(d) > 0: if k == 1: f = True break tmp = d.popleft() for i in ab[tmp]: if chk[i] == 0: chk[i] = 1 d.append(i) k -= 1 cnt += 1 if f == True: print(cnt) else: print(-1)