結果
問題 | No.994 ばらばらコイン |
ユーザー | O2MT |
提出日時 | 2021-02-27 19:43:00 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 204 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 39,888 KB |
最終ジャッジ日時 | 2024-10-02 18:03:11 |
合計ジャッジ時間 | 3,936 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
from collections import deque from copy import copy N,K = map(int,input().split()) g = [[] for _ in range(N)] for _ in range(N-1): a,b = map(int,input().split()) a -= 1 b -= 1 g[a].append(b) g[b].append(a) summary = [0]*N summary[0] = 1 que = deque([(0,K-1,0,summary,[False]*N)]) ans = 10**18 while que: node_f,coin,count,rec,visited = que.popleft() if coin == 0: ans = min(ans,count) elif coin < 0: continue for node_t in g[node_f]: if not visited[node_t]: c = coin r = rec.copy() v = visited.copy() v[node_t] = True if r[node_t] == 0: r[node_t] += 1 c -= 1 que.append((node_t,c,count+1,r,v)) if ans == 10**18: ans = -1 print(ans)