結果

問題 No.1077 Noelちゃんと星々4
ユーザー tentententen
提出日時 2020-08-21 08:30:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 747 bytes
コンパイル時間 4,302 ms
コンパイル使用メモリ 77,076 KB
実行使用メモリ 96,732 KB
最終ジャッジ日時 2024-10-14 01:17:52
合計ジャッジ時間 8,479 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,280 KB
testcase_01 AC 138 ms
41,440 KB
testcase_02 AC 258 ms
74,984 KB
testcase_03 AC 293 ms
76,748 KB
testcase_04 AC 194 ms
56,100 KB
testcase_05 AC 167 ms
52,176 KB
testcase_06 AC 198 ms
56,012 KB
testcase_07 AC 201 ms
57,520 KB
testcase_08 AC 199 ms
56,104 KB
testcase_09 AC 177 ms
51,784 KB
testcase_10 AC 276 ms
76,796 KB
testcase_11 AC 248 ms
66,696 KB
testcase_12 AC 227 ms
66,352 KB
testcase_13 AC 174 ms
52,020 KB
testcase_14 AC 269 ms
76,008 KB
testcase_15 AC 210 ms
66,372 KB
testcase_16 AC 187 ms
56,364 KB
testcase_17 AC 252 ms
66,516 KB
testcase_18 AC 273 ms
77,424 KB
testcase_19 AC 165 ms
51,960 KB
testcase_20 AC 119 ms
40,072 KB
testcase_21 AC 286 ms
96,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MAX = 10000;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] arr = new int[n];
		for (int i = 0; i < n; i++) {
		    arr[i] = sc.nextInt();
		}
		int[][] dp = new int[n][MAX + 1];
		for (int i = MAX; i >= 0; i--) {
		    dp[n - 1][i] = Math.abs(i - arr[n - 1]);
		}
		for (int i = n - 2; i >= 0; i--) {
		    int min = dp[i + 1][MAX];
		    for (int j = MAX; j >= 0; j--) {
		        min = Math.min(min, dp[i + 1][j]);
		        dp[i][j] = Math.abs(j - arr[i]) + min;
		    }
		}
		int min = Integer.MAX_VALUE;
		for (int i = 0; i <= MAX; i++) {
		    min = Math.min(min, dp[0][i]);
		}
		System.out.println(min);
	}
}
0