結果

問題 No.595 登山
ユーザー 37zigen37zigen
提出日時 2017-11-11 02:15:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 949 ms / 1,500 ms
コード長 1,064 bytes
コンパイル時間 3,051 ms
コンパイル使用メモリ 77,380 KB
実行使用メモリ 65,108 KB
最終ジャッジ日時 2024-11-24 16:37:21
合計ジャッジ時間 21,370 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,228 KB
testcase_01 AC 132 ms
41,200 KB
testcase_02 AC 133 ms
41,340 KB
testcase_03 AC 135 ms
41,484 KB
testcase_04 AC 895 ms
61,596 KB
testcase_05 AC 522 ms
49,104 KB
testcase_06 AC 813 ms
55,756 KB
testcase_07 AC 329 ms
47,764 KB
testcase_08 AC 399 ms
48,624 KB
testcase_09 AC 832 ms
55,788 KB
testcase_10 AC 711 ms
50,176 KB
testcase_11 AC 641 ms
49,556 KB
testcase_12 AC 306 ms
47,976 KB
testcase_13 AC 509 ms
48,252 KB
testcase_14 AC 786 ms
58,460 KB
testcase_15 AC 800 ms
59,880 KB
testcase_16 AC 803 ms
59,752 KB
testcase_17 AC 766 ms
58,968 KB
testcase_18 AC 756 ms
59,168 KB
testcase_19 AC 900 ms
64,976 KB
testcase_20 AC 936 ms
62,704 KB
testcase_21 AC 935 ms
61,508 KB
testcase_22 AC 864 ms
64,748 KB
testcase_23 AC 911 ms
65,108 KB
testcase_24 AC 132 ms
41,244 KB
testcase_25 AC 135 ms
41,192 KB
testcase_26 AC 949 ms
61,532 KB
testcase_27 AC 768 ms
62,904 KB
testcase_28 AC 779 ms
62,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	static void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long p = sc.nextLong();
		long[] h = new long[n];
		for (int i = 0; i < n; ++i) {
			h[i] = sc.nextLong();
		}
		long[][] dp = new long[n][2];
		for (int i = 0; i < n; ++i) {
			dp[i][0] = Long.MAX_VALUE / 3;
			dp[i][1] = Long.MAX_VALUE / 3;
		}
		dp[0][0] = 0;
		dp[0][1] = p;
		for (int i = 1; i < n; ++i) {
			dp[i][0] = Math.min(dp[i][0], dp[i - 1][0] + Math.max(0, h[i] - h[i - 1]));
			dp[i][0] = Math.min(dp[i][0], dp[i - 1][1] + p);
			dp[i][0] = Math.min(dp[i][0], dp[i - 1][0] + p);

			dp[i][1] = Math.min(dp[i][1], dp[i - 1][0] + p);
			dp[i][1] = Math.min(dp[i][1], dp[i - 1][1] + p);
			dp[i][1] = Math.min(dp[i][1], dp[i - 1][1] + Math.max(0, h[i - 1] - h[i]));
		}
		System.out.println(Math.min(dp[n - 1][0], dp[n - 1][1]));
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}
0