結果
問題 | No.247 線形計画問題もどき |
ユーザー | titia |
提出日時 | 2022-08-17 04:20:06 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
|
実行時間 | - |
コード長 | 444 bytes |
コンパイル時間 | 200 ms |
コンパイル使用メモリ | 82,468 KB |
実行使用メモリ | 848,212 KB |
最終ジャッジ日時 | 2024-10-04 00:37:23 |
合計ジャッジ時間 | 3,897 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
67,576 KB |
testcase_01 | AC | 38 ms
54,700 KB |
testcase_02 | MLE | - |
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 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
from collections import deque C=int(input()) N=int(input()) A=list(map(int,input().split())) A.sort(reverse=True) Q=deque() Q.append((0,0,C))# 回数, index, rest ANS=1<<31 while Q: s,ind,rest=Q.popleft() if rest==0: ANS=min(ANS,s) continue if ind<N: x=rest//A[ind] for i in range(x+1): Q.append((s+i,ind+1,rest-i*A[ind])) if ANS==1<<31: print(-1) else: print(ANS)