結果

問題 No.286 Modulo Discount Store
ユーザー tipstar0125tipstar0125
提出日時 2024-01-31 16:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 387 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,500 KB
最終ジャッジ日時 2024-09-28 10:23:02
合計ジャッジ時間 4,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 66 ms
68,096 KB
testcase_02 AC 134 ms
77,696 KB
testcase_03 AC 46 ms
61,696 KB
testcase_04 AC 52 ms
64,896 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 209 ms
79,232 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 99 ms
76,800 KB
testcase_11 AC 46 ms
61,440 KB
testcase_12 AC 47 ms
61,568 KB
testcase_13 AC 136 ms
77,440 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 62 ms
68,352 KB
testcase_17 AC 387 ms
82,500 KB
testcase_18 AC 88 ms
76,948 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 67 ms
70,528 KB
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 38 ms
52,224 KB
testcase_23 AC 136 ms
77,692 KB
testcase_24 AC 37 ms
52,728 KB
testcase_25 AC 73 ms
73,472 KB
testcase_26 AC 36 ms
51,840 KB
testcase_27 AC 75 ms
73,600 KB
testcase_28 AC 203 ms
79,604 KB
testcase_29 AC 38 ms
51,712 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 64 ms
69,760 KB
testcase_32 AC 58 ms
67,712 KB
testcase_33 AC 36 ms
52,224 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 63 ms
69,248 KB
testcase_36 AC 38 ms
51,584 KB
testcase_37 AC 76 ms
73,344 KB
testcase_38 AC 36 ms
51,968 KB
testcase_39 AC 207 ms
79,488 KB
testcase_40 AC 38 ms
52,096 KB
testcase_41 AC 38 ms
51,840 KB
testcase_42 AC 38 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
M=[]
for _ in range(N):M.append(int(input()))
MAX=1<<N
INF=int(1e18)
dp=[[INF for _ in range(N)] for _ in range(MAX)]
for i in range(N):dp[1<<i][i]=M[i]
for s in range(1,MAX):
    for frm in range(N):
        if s&(1<<frm)==0:continue
        for to in range(N):
            if s&(1<<to)==0:continue
            bs=s^(1<<to)
            if dp[bs][frm]==INF:continue
            total=0
            for i in range(N):
                if bs&(1<<i)>0:total+=M[i]
            cost=max(0,M[to]-(total%1000))
            dp[s][to]=min(dp[s][to],dp[bs][frm]+cost)
ans=min(dp[-1])
print(ans)
0