結果

問題 No.595 登山
ユーザー e869120e869120
提出日時 2017-11-10 22:54:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 87 ms / 1,500 ms
コード長 811 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 83,116 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-11-24 13:10:38
合計ジャッジ時間 3,080 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 60 ms
7,808 KB
testcase_05 AC 19 ms
5,248 KB
testcase_06 AC 52 ms
7,296 KB
testcase_07 AC 7 ms
5,248 KB
testcase_08 AC 10 ms
5,248 KB
testcase_09 AC 53 ms
7,296 KB
testcase_10 AC 37 ms
6,144 KB
testcase_11 AC 33 ms
5,888 KB
testcase_12 AC 6 ms
5,248 KB
testcase_13 AC 17 ms
5,248 KB
testcase_14 AC 40 ms
8,320 KB
testcase_15 AC 40 ms
8,192 KB
testcase_16 AC 40 ms
8,192 KB
testcase_17 AC 40 ms
8,192 KB
testcase_18 AC 42 ms
8,192 KB
testcase_19 AC 84 ms
8,064 KB
testcase_20 AC 83 ms
8,192 KB
testcase_21 AC 84 ms
8,064 KB
testcase_22 AC 84 ms
8,064 KB
testcase_23 AC 84 ms
8,192 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 87 ms
8,192 KB
testcase_27 AC 64 ms
8,064 KB
testcase_28 AC 65 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<cmath>
#include<queue>
#include<functional>
#include<map>
using namespace std;
long long dp[200009][2], n, p, a[200009];
int main() {
	cin >> n >> p;
	for (int i = 1; i <= n; i++)cin >> a[i];
	for (int i = 0; i <= n + 1; i++) { dp[i][0] = (1LL << 60); dp[i][1] = (1LL << 60); }
	dp[1][0] = 0;
	for (int i = 1; i < n; i++) {
		dp[i + 1][0] = min(dp[i + 1][0], dp[i][0] + p);
		dp[i + 1][1] = min(dp[i + 1][1], dp[i][0] + p);
		dp[i + 1][0] = min(dp[i + 1][0], dp[i][1] + p);
		dp[i + 1][1] = min(dp[i + 1][1], dp[i][1] + p);
		dp[i + 1][0] = min(dp[i + 1][0], dp[i][0] + max(0LL, a[i + 1] - a[i]));
		dp[i + 1][1] = min(dp[i + 1][1], dp[i][1] + max(0LL, a[i] - a[i + 1]));
	}
	cout << min(dp[n][0], dp[n][1]) << endl;
	return 0;
}
0