結果

問題 No.247 線形計画問題もどき
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-05-28 16:52:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,002 ms / 2,000 ms
コード長 533 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,560 KB
最終ジャッジ日時 2024-07-07 11:15:39
合計ジャッジ時間 5,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
77,572 KB
testcase_01 AC 39 ms
59,648 KB
testcase_02 AC 1,002 ms
79,176 KB
testcase_03 AC 34 ms
51,880 KB
testcase_04 AC 33 ms
52,224 KB
testcase_05 AC 32 ms
52,608 KB
testcase_06 AC 33 ms
52,480 KB
testcase_07 AC 79 ms
79,280 KB
testcase_08 AC 61 ms
79,124 KB
testcase_09 AC 32 ms
51,968 KB
testcase_10 AC 47 ms
67,620 KB
testcase_11 AC 34 ms
52,096 KB
testcase_12 AC 32 ms
51,840 KB
testcase_13 AC 32 ms
52,224 KB
testcase_14 AC 32 ms
52,224 KB
testcase_15 AC 33 ms
52,352 KB
testcase_16 AC 32 ms
51,840 KB
testcase_17 AC 151 ms
76,832 KB
testcase_18 AC 57 ms
75,792 KB
testcase_19 AC 399 ms
77,776 KB
testcase_20 AC 558 ms
78,696 KB
testcase_21 AC 69 ms
75,656 KB
testcase_22 AC 110 ms
76,416 KB
testcase_23 AC 76 ms
76,292 KB
testcase_24 AC 582 ms
79,560 KB
testcase_25 AC 406 ms
78,020 KB
testcase_26 AC 117 ms
77,668 KB
testcase_27 AC 134 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3

import array
import itertools


IMPOSSIBLE = -1
INF = 10 ** 6


def compute_min(c, n, bs):
    dp = array.array("L", (INF for _ in range(c + 1)))
    dp[0] = 0
    for i, b in itertools.product(range(1, c + 1), bs):
        if b <= i:
            dp[i] = min(dp[i], dp[i - b] + 1)
    return dp[c] if dp[c] < INF else IMPOSSIBLE


def main():
    c = int(input())
    n = int(input())
    bs = array.array("L", map(int, input().split()))
    print(compute_min(c, n, bs))


if __name__ == '__main__':
    main()
0