結果

問題 No.247 線形計画問題もどき
ユーザー titiatitia
提出日時 2022-08-17 04:20:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 444 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 848,192 KB
最終ジャッジ日時 2024-04-14 21:23:03
合計ジャッジ時間 4,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
68,200 KB
testcase_01 AC 41 ms
55,904 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0