結果

問題 No.286 Modulo Discount Store
ユーザー nebukuro09nebukuro09
提出日時 2016-10-12 16:00:14
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 609 ms / 2,000 ms
コード長 472 bytes
コンパイル時間 1,863 ms
コンパイル使用メモリ 76,416 KB
実行使用メモリ 134,856 KB
最終ジャッジ日時 2024-11-22 02:43:11
合計ジャッジ時間 9,005 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
75,392 KB
testcase_01 AC 110 ms
78,720 KB
testcase_02 AC 207 ms
87,628 KB
testcase_03 AC 85 ms
76,432 KB
testcase_04 AC 92 ms
78,208 KB
testcase_05 AC 83 ms
75,648 KB
testcase_06 AC 338 ms
96,956 KB
testcase_07 AC 82 ms
75,520 KB
testcase_08 AC 82 ms
75,392 KB
testcase_09 AC 83 ms
75,788 KB
testcase_10 AC 144 ms
82,876 KB
testcase_11 AC 86 ms
76,560 KB
testcase_12 AC 85 ms
76,416 KB
testcase_13 AC 226 ms
87,148 KB
testcase_14 AC 83 ms
75,776 KB
testcase_15 AC 84 ms
75,584 KB
testcase_16 AC 106 ms
78,720 KB
testcase_17 AC 609 ms
134,856 KB
testcase_18 AC 139 ms
82,432 KB
testcase_19 AC 84 ms
75,776 KB
testcase_20 AC 127 ms
78,652 KB
testcase_21 AC 84 ms
75,904 KB
testcase_22 AC 84 ms
75,836 KB
testcase_23 AC 240 ms
87,016 KB
testcase_24 AC 83 ms
75,392 KB
testcase_25 AC 152 ms
80,292 KB
testcase_26 AC 85 ms
75,644 KB
testcase_27 AC 148 ms
80,256 KB
testcase_28 AC 335 ms
96,884 KB
testcase_29 AC 84 ms
75,912 KB
testcase_30 AC 83 ms
75,684 KB
testcase_31 AC 124 ms
78,592 KB
testcase_32 AC 117 ms
78,848 KB
testcase_33 AC 83 ms
75,648 KB
testcase_34 AC 83 ms
75,776 KB
testcase_35 AC 106 ms
78,464 KB
testcase_36 AC 83 ms
75,776 KB
testcase_37 AC 153 ms
80,848 KB
testcase_38 AC 83 ms
75,648 KB
testcase_39 AC 334 ms
96,916 KB
testcase_40 AC 84 ms
75,392 KB
testcase_41 AC 84 ms
75,692 KB
testcase_42 AC 84 ms
75,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
M = [int(raw_input()) for _ in xrange(N)]

mem = {}
def rec(p, b, acm):
    if b == ((1 << N) - 1):
        return 0
    if (p, b) in mem:
        return mem[(p, b)]
    m = float('inf')
    for i in xrange(N):
        if (1 << i) & b:
            continue
        price = max(0, M[i]-(acm%1000))
        m = min(m, rec(i, b+(1<<i), acm+M[i])+price)
    mem[(p, b)] = m
    return mem[(p, b)]
            
print min(rec(i, 1<<i, M[i])+M[i] for i in xrange(N))
0