結果

問題 No.286 Modulo Discount Store
ユーザー tipstar0125tipstar0125
提出日時 2024-01-31 14:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 658 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 121,600 KB
最終ジャッジ日時 2024-09-28 10:22:43
合計ジャッジ時間 4,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 63 ms
67,328 KB
testcase_02 AC 113 ms
85,404 KB
testcase_03 AC 47 ms
59,776 KB
testcase_04 AC 50 ms
61,440 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 187 ms
97,128 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 96 ms
80,640 KB
testcase_11 AC 45 ms
59,648 KB
testcase_12 AC 46 ms
59,904 KB
testcase_13 AC 123 ms
85,748 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 41 ms
52,352 KB
testcase_16 AC 65 ms
67,328 KB
testcase_17 AC 318 ms
121,600 KB
testcase_18 AC 94 ms
80,512 KB
testcase_19 AC 39 ms
52,352 KB
testcase_20 AC 69 ms
70,784 KB
testcase_21 AC 39 ms
52,556 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 117 ms
85,568 KB
testcase_24 AC 42 ms
52,352 KB
testcase_25 AC 82 ms
74,240 KB
testcase_26 AC 39 ms
51,840 KB
testcase_27 AC 76 ms
74,584 KB
testcase_28 AC 184 ms
97,436 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 39 ms
51,840 KB
testcase_31 AC 66 ms
71,124 KB
testcase_32 AC 62 ms
67,456 KB
testcase_33 AC 39 ms
52,096 KB
testcase_34 AC 39 ms
52,096 KB
testcase_35 AC 59 ms
66,432 KB
testcase_36 AC 40 ms
51,584 KB
testcase_37 AC 77 ms
74,752 KB
testcase_38 AC 41 ms
51,584 KB
testcase_39 AC 190 ms
97,024 KB
testcase_40 AC 39 ms
51,968 KB
testcase_41 AC 39 ms
51,840 KB
testcase_42 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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