結果

問題 No.409 ダイエット
ユーザー 0w10w1
提出日時 2019-10-17 14:02:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 2,767 ms
コンパイル使用メモリ 208,168 KB
実行使用メモリ 64,496 KB
最終ジャッジ日時 2024-06-24 09:52:14
合計ジャッジ時間 7,606 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 2 ms
6,940 KB
testcase_34 AC 2 ms
6,940 KB
testcase_35 AC 3 ms
6,940 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,944 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 3 ms
6,944 KB
testcase_41 AC 3 ms
6,944 KB
testcase_42 AC 3 ms
6,940 KB
testcase_43 AC 3 ms
6,940 KB
testcase_44 AC 3 ms
6,940 KB
testcase_45 AC 3 ms
6,940 KB
testcase_46 AC 3 ms
6,944 KB
testcase_47 AC 3 ms
6,944 KB
testcase_48 AC 3 ms
6,944 KB
testcase_49 AC 3 ms
6,944 KB
testcase_50 AC 3 ms
6,944 KB
testcase_51 AC 3 ms
6,940 KB
testcase_52 AC 3 ms
6,944 KB
testcase_53 AC 3 ms
6,944 KB
testcase_54 AC 3 ms
6,944 KB
testcase_55 AC 39 ms
11,492 KB
testcase_56 AC 52 ms
6,944 KB
testcase_57 AC 77 ms
20,312 KB
testcase_58 AC 33 ms
10,396 KB
testcase_59 AC 52 ms
16,348 KB
testcase_60 AC 32 ms
9,856 KB
testcase_61 AC 70 ms
18,136 KB
testcase_62 AC 72 ms
19,336 KB
testcase_63 AC 72 ms
22,032 KB
testcase_64 AC 40 ms
13,056 KB
testcase_65 AC 82 ms
31,192 KB
testcase_66 AC 77 ms
19,860 KB
testcase_67 AC 61 ms
15,972 KB
testcase_68 AC 55 ms
18,896 KB
testcase_69 AC 70 ms
21,632 KB
testcase_70 AC 93 ms
16,864 KB
testcase_71 AC 53 ms
10,752 KB
testcase_72 AC 114 ms
20,088 KB
testcase_73 AC 111 ms
26,900 KB
testcase_74 AC 65 ms
12,928 KB
testcase_75 AC 108 ms
22,720 KB
testcase_76 AC 76 ms
14,300 KB
testcase_77 AC 55 ms
14,564 KB
testcase_78 AC 58 ms
11,812 KB
testcase_79 AC 46 ms
10,016 KB
testcase_80 AC 106 ms
18,944 KB
testcase_81 AC 107 ms
22,500 KB
testcase_82 AC 77 ms
14,468 KB
testcase_83 AC 86 ms
15,524 KB
testcase_84 AC 74 ms
18,536 KB
testcase_85 AC 10 ms
6,940 KB
testcase_86 AC 72 ms
18,112 KB
testcase_87 AC 93 ms
17,004 KB
testcase_88 AC 41 ms
10,112 KB
testcase_89 AC 130 ms
57,560 KB
testcase_90 AC 46 ms
16,768 KB
testcase_91 AC 142 ms
64,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N, A, B, W;
  cin >> N >> A >> B >> W;

  vector<int> D(N);
  for (int i = 0; i < N; ++i) {
    cin >> D[i];
  }

  if (B == 0) {
    int64_t ans = W - (int64_t) N * A;
    cout << ans << endl;
  } else {
    int maxd = *max_element(D.begin(), D.end());
    int threshold = ceil(2 * sqrt((maxd + A) / B));

    const int64_t INF = 3e11;
    vector<vector<int64_t>> dp(N + 1, vector<int64_t>(threshold, 3e11));
    dp[0][0] = W;
    for (int i = 0; i < N; ++i) {
      for (int j = 0; j < threshold; ++j) {
        dp[i + 1][0] = min(dp[i + 1][0], dp[i][j] + D[i]);
        if (j + 1 < threshold) dp[i + 1][j + 1] = min(dp[i + 1][j + 1], dp[i][j] - A + (int64_t) B * (j + 1));
      }
    }

    int64_t ans = *min_element(dp[N].begin(), dp[N].end());
    cout << ans << endl;
  }

  return 0;
}
0