結果

問題 No.595 登山
ユーザー どららどらら
提出日時 2017-11-11 12:34:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 79 ms / 1,500 ms
コード長 1,029 bytes
コンパイル時間 1,347 ms
コンパイル使用メモリ 171,096 KB
実行使用メモリ 8,196 KB
最終ジャッジ日時 2024-11-24 18:57:00
合計ジャッジ時間 3,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,820 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 4 ms
6,816 KB
testcase_04 AC 57 ms
7,900 KB
testcase_05 AC 18 ms
6,992 KB
testcase_06 AC 49 ms
7,696 KB
testcase_07 AC 9 ms
6,820 KB
testcase_08 AC 11 ms
6,868 KB
testcase_09 AC 49 ms
7,736 KB
testcase_10 AC 33 ms
7,304 KB
testcase_11 AC 31 ms
7,244 KB
testcase_12 AC 7 ms
6,820 KB
testcase_13 AC 16 ms
6,856 KB
testcase_14 AC 39 ms
8,140 KB
testcase_15 AC 37 ms
8,136 KB
testcase_16 AC 37 ms
8,060 KB
testcase_17 AC 38 ms
8,028 KB
testcase_18 AC 37 ms
8,140 KB
testcase_19 AC 76 ms
8,128 KB
testcase_20 AC 76 ms
8,076 KB
testcase_21 AC 79 ms
8,012 KB
testcase_22 AC 79 ms
8,008 KB
testcase_23 AC 78 ms
8,196 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 77 ms
8,136 KB
testcase_27 AC 61 ms
8,016 KB
testcase_28 AC 60 ms
7,996 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