結果

問題 No.2150 Site Supporter
ユーザー _yurimoir_yurimoir
提出日時 2022-12-16 21:49:12
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 3,090 ms
コンパイル使用メモリ 251,572 KB
実行使用メモリ 14,776 KB
最終ジャッジ日時 2024-04-27 21:13:46
合計ジャッジ時間 5,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 14 ms
6,940 KB
testcase_09 AC 81 ms
13,824 KB
testcase_10 AC 42 ms
8,448 KB
testcase_11 AC 76 ms
13,032 KB
testcase_12 AC 31 ms
7,040 KB
testcase_13 AC 19 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 90 ms
14,776 KB
testcase_18 AC 36 ms
7,680 KB
testcase_19 AC 12 ms
6,948 KB
testcase_20 AC 60 ms
11,008 KB
testcase_21 AC 9 ms
6,940 KB
testcase_22 AC 83 ms
13,684 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 54 ms
9,344 KB
testcase_28 AC 50 ms
9,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    ll n,k,x;
    cin>>n>>k>>x;
    vector<ll> a(n);
    for(auto& x:a)cin>>x;
    vector<vector<ll>> dp(n,vector<ll>(2,1e18));
    dp[0][0]=x+k;
    dp[0][1]=a[0];
    for(int i=1;i<n;i++){
        dp[i][0]=min(dp[i-1][0]+k,dp[i-1][1]+x+k);
        dp[i][1]=min(dp[i-1][0]+a[i],dp[i-1][1]+a[i]);
    }
    ll ans=min(dp[n-1][0],dp[n-1][1]);
    cout<<ans<<endl;
}
0