結果

問題 No.2150 Site Supporter
ユーザー LanatusLanatus
提出日時 2022-12-07 16:12:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 206,132 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-10-13 22:01:35
合計ジャッジ時間 3,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 14 ms
5,248 KB
testcase_09 AC 77 ms
13,696 KB
testcase_10 AC 39 ms
8,448 KB
testcase_11 AC 70 ms
13,152 KB
testcase_12 AC 28 ms
7,168 KB
testcase_13 AC 17 ms
5,504 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 87 ms
14,976 KB
testcase_18 AC 34 ms
7,680 KB
testcase_19 AC 12 ms
5,248 KB
testcase_20 AC 56 ms
11,008 KB
testcase_21 AC 8 ms
5,248 KB
testcase_22 AC 77 ms
13,672 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 50 ms
9,344 KB
testcase_28 AC 47 ms
9,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define all(v) begin(v), end(v)

using namespace std;

using ll = long long;

const ll INF = 1e18;

int main(void) {
  ll n, k, x;
  cin >> n >> k >> x;

  vector<ll> a(n);
  for (int i = 0; i < n; ++i) cin >> a[i];

  vector<vector<ll>> dp(n+1, vector<ll>(2, INF));
  dp[0][0] = 0;

  for (int i = 1; i <= n; ++i) {
    dp[i][0] = min(dp[i-1][0] + a[i-1], dp[i-1][1] + a[i-1]);
    dp[i][1] = min(dp[i-1][0] + k + x, dp[i-1][1] + k);
  }

  cout << min(dp[n][0], dp[n][1]) << endl;
  return 0;
}
0