結果

問題 No.595 登山
ユーザー mayoko_mayoko_
提出日時 2017-11-29 22:46:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 1,500 ms
コード長 708 bytes
コンパイル時間 643 ms
コンパイル使用メモリ 70,240 KB
実行使用メモリ 7,936 KB
最終ジャッジ日時 2024-11-27 19:18:20
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 59 ms
7,680 KB
testcase_05 AC 19 ms
5,248 KB
testcase_06 AC 53 ms
6,912 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 52 ms
7,040 KB
testcase_10 AC 37 ms
5,760 KB
testcase_11 AC 33 ms
5,632 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 17 ms
5,248 KB
testcase_14 AC 40 ms
7,928 KB
testcase_15 AC 40 ms
7,936 KB
testcase_16 AC 39 ms
7,808 KB
testcase_17 AC 39 ms
7,936 KB
testcase_18 AC 39 ms
7,808 KB
testcase_19 AC 83 ms
7,936 KB
testcase_20 AC 84 ms
7,936 KB
testcase_21 AC 82 ms
7,936 KB
testcase_22 AC 84 ms
7,936 KB
testcase_23 AC 83 ms
7,808 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 85 ms
7,936 KB
testcase_27 AC 63 ms
7,808 KB
testcase_28 AC 64 ms
7,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>

typedef long long ll;
using namespace std;

ll dp[222222][2];

int main() {
    int N;
    ll P;
    cin >> N >> P;
    vector<ll> H(N);
    for (int i = 0; i < N; i++) {
        cin >> H[i];
    }
    ll INF = 1ll * 100000 * 100000 * 100000 * 1000;
    dp[0][1] = P;
    for (int i = 1; i < N; i++) {
        for (int j = 0; j < 2; j++) {
            int nj = j^1;
            ll diff = (j == 0 ? H[i] - H[i-1] : H[i-1] - H[i]);
            diff = max(0ll, diff);
            ll d1 = dp[i-1][j] + min<ll>(P, diff);
            ll d2 = dp[i-1][nj] + P;
            dp[i][j] = min(d1, d2);
        }
    }
    cout << min(dp[N-1][0], dp[N-1][1]) << endl;
    return 0;
}
0