結果

問題 No.595 登山
ユーザー TangentDayTangentDay
提出日時 2017-11-10 23:59:02
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,169 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 84,352 KB
実行使用メモリ 13,888 KB
最終ジャッジ日時 2024-05-03 14:54:48
合計ジャッジ時間 3,824 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,756 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:34:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   34 |     REP(i,n) scanf("%lld", &h[i]);
      |              ~~~~~^~~~~~~~~~~~~~~

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <cstdio>
#include <cmath>
#include <vector>
#include <cstring>
#include <string>
#include <set>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <algorithm>
using namespace std;

#define REP(i,n) for(int i=0; i<n; ++i)
#define FOR(i,a,b) for(int i=a; i<=b; ++i)
#define FORR(i,a,b) for (int i=a; i>=b; --i)
#define ALL(c) (c).begin(), (c).end()

typedef long long ll;
typedef vector<int> VI;
typedef vector<ll> VL;
typedef vector<VL> VVL;
typedef vector<VI> VVI;
typedef pair<int,int> P;
typedef pair<ll,ll> PL;

int main() {
    int n;
    ll p;
    cin >> n >> p;
    VL h(n);
    REP(i,n) scanf("%lld", &h[i]);

    VL r(n);
    REP(i,n-1){
        r[i+1] = r[i] + min(p, max(0LL, h[i+1] - h[i]));
    }
    VL l(n);
    FORR(i,n-2,0){
        l[i] = l[i+1] + min(p, max(0LL, h[i] - h[i+1]));
    }

    REP(i,n-1){
        r[i+1] = min(r[i+1], r[i] + min(p, max(0LL, h[i+1] - h[i])));
        FOR(j,i+1,n-2){
            r[j+1] = min(r[j+1], r[i] + l[i+1] - l[j] + 2*p);
        }
        r[n-1] = min(r[n-1], r[i] + l[i+1] - l[n-1] + p);
    }

    cout << r[n-1] << endl;

    return 0;
}
0