結果

問題 No.31 悪のミックスジュース
ユーザー zimphazimpha
提出日時 2017-12-12 22:27:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 67,328 KB
最終ジャッジ日時 2024-09-14 15:53:23
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 65 ms
63,488 KB
testcase_02 AC 65 ms
63,744 KB
testcase_03 AC 66 ms
63,488 KB
testcase_04 AC 68 ms
62,080 KB
testcase_05 AC 68 ms
62,464 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 70 ms
63,744 KB
testcase_08 AC 84 ms
64,000 KB
testcase_09 AC 72 ms
63,104 KB
testcase_10 AC 39 ms
51,968 KB
testcase_11 AC 51 ms
62,592 KB
testcase_12 AC 61 ms
63,744 KB
testcase_13 AC 48 ms
59,776 KB
testcase_14 AC 67 ms
63,488 KB
testcase_15 AC 56 ms
67,328 KB
testcase_16 AC 53 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  n, v = list(map(int, input().split()))
  c = list(map(int, input().split()))
  s = [x for x in c]
  for i in range(1, n):
    s[i] += s[i - 1]
  v -= n
  if v <= 0:
    return s[-1]
  m = min(20000, v)
  dp = [0] * (m + 1)
  x = 0
  for i in range(n):
    if s[i] * (x + 1) < s[x] * (i + 1):
      x = i
  for i in range(0, m + 1):
    dp[i] = 2 ** 60
    if (v - i) % (x + 1) == 0:
      dp[i] = (v - i) // (x + 1) * s[x]
  for i in range(m, -1, -1):
    for j in range(n):
      if i + j + 1 > m: continue
      dp[i] = min(dp[i], dp[i + j + 1] + s[j])
  return dp[0] + s[-1]

print(solve())
0