結果

問題 No.595 登山
ユーザー どららどらら
提出日時 2017-11-11 12:34:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 1,500 ms
コード長 1,029 bytes
コンパイル時間 1,416 ms
コンパイル使用メモリ 170,352 KB
実行使用メモリ 8,176 KB
最終ジャッジ日時 2024-05-03 16:30:24
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 56 ms
8,140 KB
testcase_05 AC 17 ms
6,948 KB
testcase_06 AC 48 ms
7,688 KB
testcase_07 AC 8 ms
6,940 KB
testcase_08 AC 10 ms
6,944 KB
testcase_09 AC 49 ms
7,752 KB
testcase_10 AC 37 ms
7,500 KB
testcase_11 AC 32 ms
7,240 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 38 ms
8,140 KB
testcase_15 AC 36 ms
8,016 KB
testcase_16 AC 39 ms
8,000 KB
testcase_17 AC 38 ms
8,140 KB
testcase_18 AC 38 ms
8,120 KB
testcase_19 AC 78 ms
8,076 KB
testcase_20 AC 77 ms
8,052 KB
testcase_21 AC 78 ms
8,176 KB
testcase_22 AC 79 ms
8,152 KB
testcase_23 AC 76 ms
8,012 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 78 ms
8,088 KB
testcase_27 AC 57 ms
8,104 KB
testcase_28 AC 58 ms
8,104 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;
  REP(i,1,N){
    //i-1  i
    // -> & ->
    dp[i][0] = min(dp[i][0], dp[i-1][0] + max(0LL,H[i]-H[i-1]));
    dp[i][0] = min(dp[i][0], dp[i-1][0] + P);

    // -> & <-
    dp[i][1] = min(dp[i][1], dp[i-1][0] + P);

    // <- & ->
    dp[i][0] = min(dp[i][0], dp[i-1][1] + P);

    // <- & <-
    dp[i][1] = min(dp[i][1], dp[i-1][1] + max(0LL,H[i-1]-H[i]));
    dp[i][1] = min(dp[i][1], dp[i-1][1] + P);
  }


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