結果

問題 No.31 悪のミックスジュース
ユーザー tnodinotnodino
提出日時 2022-04-06 04:24:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 80,120 KB
最終ジャッジ日時 2024-05-05 16:15:27
合計ジャッジ時間 2,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
64,256 KB
testcase_01 AC 157 ms
77,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 162 ms
79,672 KB
testcase_05 AC 159 ms
80,120 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 178 ms
72,704 KB
testcase_08 AC 174 ms
70,400 KB
testcase_09 AC 171 ms
76,628 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 79 ms
70,400 KB
testcase_12 AC 128 ms
77,148 KB
testcase_13 AC 46 ms
60,288 KB
testcase_14 AC 161 ms
69,376 KB
testcase_15 AC 69 ms
66,176 KB
testcase_16 AC 93 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1<<64
N,V = map(int,input().split())
C = list(map(int,input().split()))
S = [0] * (N + 1)
for i in range(N):
    S[i+1] = S[i] + C[i]
if V <= N:
    print(S[N])
    exit()
DP = [INF] * (1<<16)
DP[0] = 0
for i in range(1,N+1):
    for L in range(1<<16):
        if L - i >= 0:
            DP[L] = min(DP[L-i] + S[i], DP[L])
V -= N
ans = INF
for i in range(1,N+1):
    K = V // i
    while V - (K * i) <= (1<<12) and K:
        K -= 1
    ans = min(ans, S[i] * K + DP[V - (K * i)] + S[N])
print(ans)
0