結果

問題 No.595 登山
ユーザー t98slidert98slider
提出日時 2023-08-03 02:26:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 28 ms / 1,500 ms
コード長 624 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 169,920 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-10-13 00:31:25
合計ジャッジ時間 2,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 22 ms
6,912 KB
testcase_05 AC 7 ms
6,816 KB
testcase_06 AC 19 ms
6,816 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 4 ms
6,816 KB
testcase_09 AC 18 ms
6,820 KB
testcase_10 AC 13 ms
6,816 KB
testcase_11 AC 12 ms
6,820 KB
testcase_12 AC 3 ms
6,816 KB
testcase_13 AC 7 ms
6,816 KB
testcase_14 AC 16 ms
7,168 KB
testcase_15 AC 17 ms
7,168 KB
testcase_16 AC 16 ms
7,168 KB
testcase_17 AC 16 ms
7,040 KB
testcase_18 AC 17 ms
7,168 KB
testcase_19 AC 27 ms
7,168 KB
testcase_20 AC 27 ms
7,168 KB
testcase_21 AC 26 ms
7,040 KB
testcase_22 AC 27 ms
7,168 KB
testcase_23 AC 26 ms
7,040 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 28 ms
7,040 KB
testcase_27 AC 21 ms
7,168 KB
testcase_28 AC 21 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, p;
    cin >> n >> p;
    vector<int> a(n);
    for(auto &&v : a) cin >> v;
    vector<ll> dp(n, 1ll << 60);
    vector<ll> dp2(n, 1ll << 60);
    dp[0] = 0;
    for(int i = 1; i < n; i++){
        dp[i] = min(dp[i], dp[i - 1] + min(p, max(0, a[i] - a[i - 1])));
        dp[i] = min(dp[i], dp2[i - 1] + p);
        dp2[i] = min(dp2[i], dp[i - 1] + p);
        dp2[i] = min(dp2[i], dp2[i - 1] + min(p, max(0, a[i - 1] - a[i])));
    }
    cout << min(dp[n - 1], dp2[n - 1]) << '\n';
}
0