結果

問題 No.286 Modulo Discount Store
ユーザー tjaketjake
提出日時 2015-12-03 23:38:39
言語 Python2
(2.7.18)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 489 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-09-14 08:33:10
合計ジャッジ時間 3,383 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 14 ms
6,944 KB
testcase_02 AC 98 ms
7,680 KB
testcase_03 AC 13 ms
6,944 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 12 ms
6,940 KB
testcase_06 AC 202 ms
8,576 KB
testcase_07 AC 13 ms
6,944 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 52 ms
7,040 KB
testcase_11 AC 13 ms
6,940 KB
testcase_12 AC 13 ms
6,944 KB
testcase_13 AC 100 ms
7,680 KB
testcase_14 AC 13 ms
6,940 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 14 ms
6,940 KB
testcase_17 AC 433 ms
10,496 KB
testcase_18 AC 51 ms
7,040 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 21 ms
6,940 KB
testcase_21 AC 13 ms
6,944 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 97 ms
7,552 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 31 ms
6,940 KB
testcase_26 AC 13 ms
6,940 KB
testcase_27 AC 30 ms
6,944 KB
testcase_28 AC 194 ms
8,576 KB
testcase_29 AC 13 ms
6,940 KB
testcase_30 AC 12 ms
6,944 KB
testcase_31 AC 16 ms
6,940 KB
testcase_32 AC 16 ms
6,944 KB
testcase_33 AC 13 ms
6,944 KB
testcase_34 AC 13 ms
6,940 KB
testcase_35 AC 15 ms
6,940 KB
testcase_36 AC 13 ms
6,944 KB
testcase_37 AC 30 ms
6,940 KB
testcase_38 AC 12 ms
6,940 KB
testcase_39 AC 200 ms
8,576 KB
testcase_40 AC 12 ms
6,940 KB
testcase_41 AC 13 ms
6,940 KB
testcase_42 AC 12 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
n = input()
m = [input() for i in xrange(n)]

dist = [10**7]*(1<<n)

que = [(0, 0, 0)]
while len(que):
    co, su, state = heappop(que)
    if dist[state] < co: continue
    for i in xrange(n):
        v = 1<<i
        if not state&v:
            n_co = co + max(0, m[i] - (su%1000))
            n_st = state|v
            if n_co < dist[n_st]:
                dist[n_st] = n_co
                heappush(que, (n_co, su+m[i], n_st))
print dist[(1<<n)-1]
0