結果

問題 No.595 登山
ユーザー 37zigen37zigen
提出日時 2017-11-11 02:19:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 924 ms / 1,500 ms
コード長 987 bytes
コンパイル時間 2,083 ms
コンパイル使用メモリ 77,648 KB
実行使用メモリ 75,608 KB
最終ジャッジ日時 2024-11-24 16:37:43
合計ジャッジ時間 20,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,984 KB
testcase_01 AC 112 ms
52,968 KB
testcase_02 AC 129 ms
54,060 KB
testcase_03 AC 127 ms
54,280 KB
testcase_04 AC 784 ms
69,624 KB
testcase_05 AC 499 ms
59,460 KB
testcase_06 AC 759 ms
67,896 KB
testcase_07 AC 306 ms
58,956 KB
testcase_08 AC 385 ms
59,164 KB
testcase_09 AC 731 ms
65,828 KB
testcase_10 AC 652 ms
63,712 KB
testcase_11 AC 644 ms
59,636 KB
testcase_12 AC 270 ms
59,080 KB
testcase_13 AC 430 ms
57,668 KB
testcase_14 AC 756 ms
69,904 KB
testcase_15 AC 735 ms
67,896 KB
testcase_16 AC 715 ms
70,464 KB
testcase_17 AC 724 ms
70,028 KB
testcase_18 AC 758 ms
69,896 KB
testcase_19 AC 832 ms
74,892 KB
testcase_20 AC 917 ms
73,588 KB
testcase_21 AC 885 ms
73,248 KB
testcase_22 AC 875 ms
75,608 KB
testcase_23 AC 882 ms
74,316 KB
testcase_24 AC 129 ms
54,300 KB
testcase_25 AC 131 ms
54,292 KB
testcase_26 AC 924 ms
72,744 KB
testcase_27 AC 779 ms
75,412 KB
testcase_28 AC 737 ms
73,488 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][1] = Math.min(dp[i][1], dp[i - 1][1] + Math.max(0, h[i - 1] - h[i]));
			for (int j = 0; j < 2; j++) {
				for (int k = 0; k < 2; ++k) {
					dp[i][j] = Math.min(dp[i][j], dp[i - 1][k] + p);
				}
			}
		}
		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