結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,616 KB
testcase_01 AC 167 ms
77,112 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 167 ms
79,616 KB
testcase_05 AC 168 ms
79,872 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 177 ms
71,936 KB
testcase_08 AC 167 ms
69,504 KB
testcase_09 AC 180 ms
77,056 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 80 ms
70,100 KB
testcase_12 AC 135 ms
76,928 KB
testcase_13 AC 47 ms
59,904 KB
testcase_14 AC 174 ms
69,248 KB
testcase_15 AC 70 ms
66,048 KB
testcase_16 AC 90 ms
72,704 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