結果

問題 No.2150 Site Supporter
ユーザー Nzt3Nzt3
提出日時 2022-12-24 00:37:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 2,047 ms
コンパイル使用メモリ 204,060 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-04-29 04:43:23
合計ジャッジ時間 3,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 23 ms
6,528 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 22 ms
6,272 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 26 ms
6,912 KB
testcase_18 AC 11 ms
5,376 KB
testcase_19 AC 4 ms
5,376 KB
testcase_20 AC 18 ms
5,760 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 24 ms
6,528 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 16 ms
5,376 KB
testcase_28 AC 15 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  long long K,X;
  cin>>N>>K>>X;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  vector<array<long long,2>>dp(N+1,{(long long)1e18,(long long)1e18});
  dp[0][0]=0;
  for(int i=0;i<N;i++){
    dp[i+1][0]=min(dp[i][0]+A[i],dp[i][1]+A[i]);
    dp[i+1][1]=min(dp[i][0]+K+X,dp[i][1]+K);
  }
  cout<<min(dp[N][0],dp[N][1])<<'\n';
}
0