結果

問題 No.286 Modulo Discount Store
ユーザー rlangevinrlangevin
提出日時 2023-01-08 20:07:53
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 533 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 339,632 KB
最終ジャッジ日時 2024-05-09 11:13:44
合計ジャッジ時間 8,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
72,596 KB
testcase_01 AC 79 ms
75,404 KB
testcase_02 AC 670 ms
140,304 KB
testcase_03 AC 53 ms
65,800 KB
testcase_04 AC 61 ms
69,776 KB
testcase_05 AC 49 ms
64,532 KB
testcase_06 AC 1,366 ms
204,032 KB
testcase_07 AC 41 ms
59,184 KB
testcase_08 AC 53 ms
67,204 KB
testcase_09 AC 49 ms
66,008 KB
testcase_10 AC 354 ms
108,032 KB
testcase_11 AC 54 ms
65,816 KB
testcase_12 AC 53 ms
66,076 KB
testcase_13 AC 732 ms
140,216 KB
testcase_14 AC 56 ms
68,272 KB
testcase_15 AC 49 ms
63,984 KB
testcase_16 AC 78 ms
75,052 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(s, m):
    return s * 1000 + m

N = int(input())
M = [0] * N
for i in range(N):
    M[i] = int(input())
    
inf = 10 ** 18
dp = [inf] * ((1 << N) * 1000)
dp[0] = 0
for s in range(1 << N):
    for i in range(N):
        if (s >> i)&1:
            continue
        ns = s | (1 << i)
        for m in range(1000):
            v = max(0, M[i] - m)
            nm = (m + M[i])%1000
            dp[f(ns, nm)] = min(dp[f(ns, nm)], dp[f(s, m)] + v)
ans = inf
for i in range(1000):
    ans = min(ans, dp[f((1 << N) - 1, i)])
print(ans)
0