結果

問題 No.286 Modulo Discount Store
ユーザー nebukuro09nebukuro09
提出日時 2016-10-12 15:59:55
言語 Python2
(2.7.18)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 472 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 50,016 KB
最終ジャッジ日時 2024-05-01 20:22:58
合計ジャッジ時間 8,405 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,400 KB
testcase_01 AC 16 ms
6,528 KB
testcase_02 AC 387 ms
16,236 KB
testcase_03 AC 12 ms
6,400 KB
testcase_04 AC 13 ms
6,400 KB
testcase_05 AC 11 ms
6,400 KB
testcase_06 AC 946 ms
27,172 KB
testcase_07 AC 11 ms
6,272 KB
testcase_08 AC 11 ms
6,400 KB
testcase_09 AC 11 ms
6,400 KB
testcase_10 AC 169 ms
12,864 KB
testcase_11 AC 11 ms
6,400 KB
testcase_12 AC 11 ms
6,400 KB
testcase_13 AC 386 ms
16,056 KB
testcase_14 AC 11 ms
6,272 KB
testcase_15 AC 11 ms
6,400 KB
testcase_16 AC 15 ms
6,528 KB
testcase_17 TLE -
testcase_18 AC 169 ms
12,864 KB
testcase_19 AC 11 ms
6,400 KB
testcase_20 AC 38 ms
7,040 KB
testcase_21 AC 11 ms
6,400 KB
testcase_22 AC 10 ms
6,400 KB
testcase_23 AC 389 ms
16,108 KB
testcase_24 AC 11 ms
6,400 KB
testcase_25 AC 76 ms
8,448 KB
testcase_26 AC 11 ms
6,400 KB
testcase_27 AC 75 ms
8,576 KB
testcase_28 AC 935 ms
27,176 KB
testcase_29 AC 11 ms
6,400 KB
testcase_30 AC 12 ms
6,400 KB
testcase_31 AC 23 ms
6,656 KB
testcase_32 AC 22 ms
6,656 KB
testcase_33 AC 11 ms
6,400 KB
testcase_34 AC 11 ms
6,400 KB
testcase_35 AC 15 ms
6,528 KB
testcase_36 AC 11 ms
6,400 KB
testcase_37 AC 78 ms
8,576 KB
testcase_38 AC 11 ms
6,272 KB
testcase_39 AC 925 ms
27,192 KB
testcase_40 AC 10 ms
6,528 KB
testcase_41 AC 11 ms
6,400 KB
testcase_42 AC 11 ms
6,528 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