結果

問題 No.31 悪のミックスジュース
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 14:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 5,000 ms
コード長 631 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 71,632 KB
最終ジャッジ日時 2024-10-10 03:24:18
合計ジャッジ時間 2,203 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,412 KB
testcase_01 AC 66 ms
65,132 KB
testcase_02 AC 67 ms
66,700 KB
testcase_03 AC 73 ms
71,632 KB
testcase_04 AC 58 ms
61,784 KB
testcase_05 AC 59 ms
61,192 KB
testcase_06 AC 37 ms
52,900 KB
testcase_07 AC 70 ms
64,136 KB
testcase_08 AC 67 ms
63,432 KB
testcase_09 AC 69 ms
65,360 KB
testcase_10 AC 38 ms
52,868 KB
testcase_11 AC 52 ms
62,932 KB
testcase_12 AC 61 ms
65,020 KB
testcase_13 AC 42 ms
58,776 KB
testcase_14 AC 71 ms
63,812 KB
testcase_15 AC 49 ms
61,828 KB
testcase_16 AC 56 ms
64,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v = map(int,input().split())
C = list(map(int,input().split()))

cost = []
now = 0

mnum = 0
mcost = 0
for i,c in enumerate(C,1):
    now += c
    cost.append(now)
    if mnum == 0:
        mnum = i
        mcost = now
        continue

    if mcost*i > now*mnum:
        mnum = i
        mcost = now

base = sum(C)
v -= min(v,n)
took = max(0,(v-10000)//mnum)
base += took*mcost
v -= took*mnum

inf = 10**30
dp = [inf]*(v+1)
dp[0] = 0
for i, c in enumerate(cost,1):
    for j in range(v+1):
        if dp[j] == inf:
            continue
        if j + i <= v:
            dp[j+i] = min(dp[j+i],dp[j]+c)

print(base+dp[-1])


    
0