結果

問題 No.286 Modulo Discount Store
ユーザー rpy3cpprpy3cpp
提出日時 2015-10-09 22:59:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 718 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-20 04:26:10
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
10,496 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 125 ms
11,264 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 246 ms
11,776 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 32 ms
10,624 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 75 ms
10,880 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 124 ms
11,264 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 33 ms
10,624 KB
testcase_17 AC 476 ms
13,312 KB
testcase_18 AC 75 ms
11,008 KB
testcase_19 AC 32 ms
10,624 KB
testcase_20 AC 39 ms
10,752 KB
testcase_21 AC 31 ms
10,496 KB
testcase_22 AC 31 ms
10,624 KB
testcase_23 AC 127 ms
11,264 KB
testcase_24 AC 40 ms
10,624 KB
testcase_25 AC 52 ms
10,752 KB
testcase_26 AC 31 ms
10,624 KB
testcase_27 AC 51 ms
10,752 KB
testcase_28 AC 238 ms
11,904 KB
testcase_29 AC 31 ms
10,624 KB
testcase_30 AC 31 ms
10,624 KB
testcase_31 AC 35 ms
10,624 KB
testcase_32 AC 35 ms
10,624 KB
testcase_33 AC 32 ms
10,624 KB
testcase_34 AC 32 ms
10,624 KB
testcase_35 AC 34 ms
10,624 KB
testcase_36 AC 31 ms
10,624 KB
testcase_37 AC 52 ms
10,752 KB
testcase_38 AC 31 ms
10,624 KB
testcase_39 AC 241 ms
11,776 KB
testcase_40 AC 31 ms
10,624 KB
testcase_41 AC 31 ms
10,624 KB
testcase_42 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
Ms = [int(input()) for i in range(N)]
dp = [float('inf')] * (1 << N)
dp[0] = 0
discount = [0] * (1 << N)
full = (1 << N) - 1
for m in range(N):
    msb = 1 << m
    for mask in range(1 << m):
        discount[msb + mask] = (discount[mask] + Ms[m]) % 1000
frontiers = [0]
for m in range(N):
    new_frontiers = []
    for f in frontiers:
        dpf = dp[f]
        dsc = discount[f]
        for idx in range(N):
            bit = 1 << idx
            if bit & f:
                continue
            nf = bit | f
            if dp[nf] == float('inf'):
                new_frontiers.append(nf)
            dp[nf] = min(dp[nf], dpf + max(0, Ms[idx] - dsc))
    frontiers = new_frontiers
print(dp[full])
0