結果

問題 No.247 線形計画問題もどき
ユーザー tassei903tassei903
提出日時 2021-10-10 23:10:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 68,728 KB
最終ジャッジ日時 2024-09-14 19:15:03
合計ジャッジ時間 3,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,388 KB
testcase_01 AC 44 ms
54,252 KB
testcase_02 AC 54 ms
64,920 KB
testcase_03 AC 43 ms
54,336 KB
testcase_04 AC 44 ms
54,068 KB
testcase_05 AC 43 ms
54,792 KB
testcase_06 AC 43 ms
54,924 KB
testcase_07 AC 46 ms
59,804 KB
testcase_08 AC 53 ms
65,164 KB
testcase_09 AC 41 ms
54,444 KB
testcase_10 AC 44 ms
60,648 KB
testcase_11 AC 43 ms
53,728 KB
testcase_12 AC 43 ms
54,960 KB
testcase_13 AC 44 ms
54,668 KB
testcase_14 AC 44 ms
54,464 KB
testcase_15 AC 42 ms
55,484 KB
testcase_16 AC 43 ms
55,520 KB
testcase_17 AC 56 ms
65,152 KB
testcase_18 AC 54 ms
63,168 KB
testcase_19 AC 60 ms
66,236 KB
testcase_20 AC 97 ms
68,600 KB
testcase_21 AC 47 ms
60,696 KB
testcase_22 AC 54 ms
63,484 KB
testcase_23 AC 47 ms
59,096 KB
testcase_24 AC 94 ms
68,728 KB
testcase_25 AC 81 ms
67,824 KB
testcase_26 AC 52 ms
63,028 KB
testcase_27 AC 54 ms
63,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
sys.setrecursionlimit(10**7)
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

c = ni()
n = ni()
a = na()
a = sorted(set(a))
n = len(a)
from collections import deque
d = deque([0])
inf = 10**9
dp = [inf for i in range(c+1)]
dp[0] = 0
while d:
    e = d.popleft()
    for i in a:
        if i+e>c:
            break
        if dp[i+e]!=inf:continue
        dp[i+e] = dp[e]+1
        d.append(i+e)
if dp[-1]==inf:
    print(-1)
else:
    print(dp[-1])
0