結果

問題 No.595 登山
ユーザー どららどらら
提出日時 2017-11-11 00:34:57
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 986 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 168,932 KB
実行使用メモリ 8,268 KB
最終ジャッジ日時 2024-05-03 15:04:33
合計ジャッジ時間 4,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,528 KB
testcase_01 AC 4 ms
6,656 KB
testcase_02 AC 4 ms
6,656 KB
testcase_03 AC 4 ms
6,528 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 35 ms
7,244 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 4 ms
6,656 KB
testcase_25 AC 4 ms
6,400 KB
testcase_26 AC 89 ms
8,016 KB
testcase_27 AC 67 ms
8,008 KB
testcase_28 AC 67 ms
8,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

#define INF 9222222222222222222LL

ll dp[200005][2];

int main(){
  int N;
  ll P;
  vector<ll> H;
  cin >> N >> P;
  rep(i,N){
    ll a;
    cin >> a;
    H.push_back(a);
  }

  rep(i,200005){
    dp[i][0] = INF;
    dp[i][1] = INF;
  }
  dp[0][0] = 0;
  dp[0][1] = 0;
  int prev = 0;
  rep(i,N-1){
    if(H[i] > H[i+1]){
      dp[i+1][0] = min(dp[i+1][0], dp[i][1] + P);
      dp[i+1][0] = min(dp[i+1][0], dp[i][0]);
      prev = i+1;
    }else{
      dp[i+1][0] = min(dp[i+1][0], dp[i][0] + H[i+1]-H[i]);
      dp[i+1][0] = min(dp[i+1][0], dp[i][0] + P);
      dp[i+1][1] = min(dp[i+1][1], dp[prev][0] + P);
    }
  }

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