結果

問題 No.838 Noelちゃんと星々3
ユーザー GrenacheGrenache
提出日時 2019-07-01 10:51:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 3,974 ms
コンパイル使用メモリ 78,324 KB
実行使用メモリ 49,476 KB
最終ジャッジ日時 2024-07-08 09:31:15
合計ジャッジ時間 10,765 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 608 ms
48,892 KB
testcase_01 AC 622 ms
48,908 KB
testcase_02 AC 655 ms
48,788 KB
testcase_03 AC 600 ms
49,476 KB
testcase_04 AC 607 ms
48,796 KB
testcase_05 AC 124 ms
41,412 KB
testcase_06 AC 106 ms
41,948 KB
testcase_07 AC 117 ms
41,596 KB
testcase_08 AC 120 ms
41,992 KB
testcase_09 AC 123 ms
41,632 KB
testcase_10 AC 114 ms
41,376 KB
testcase_11 AC 122 ms
41,612 KB
testcase_12 AC 121 ms
41,656 KB
testcase_13 AC 120 ms
41,232 KB
testcase_14 AC 114 ms
41,672 KB
testcase_15 AC 125 ms
41,612 KB
testcase_16 AC 109 ms
41,704 KB
testcase_17 AC 103 ms
40,436 KB
testcase_18 AC 132 ms
41,736 KB
testcase_19 AC 131 ms
41,628 KB
testcase_20 AC 118 ms
41,664 KB
testcase_21 AC 104 ms
41,648 KB
testcase_22 AC 101 ms
41,588 KB
testcase_23 AC 112 ms
41,544 KB
testcase_24 AC 116 ms
41,516 KB
testcase_25 AC 99 ms
41,372 KB
testcase_26 AC 102 ms
41,816 KB
testcase_27 AC 103 ms
41,528 KB
testcase_28 AC 110 ms
41,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder838 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		final long INF = Long.MAX_VALUE / 2;

		int n = sc.nextInt();

		int[] y = new int[n];
		for (int i = 0; i < n; i++) {
			y[i] = sc.nextInt();
		}
		Arrays.sort(y);

		long[] dp2 = new long[n + 1];
		long[] dp3 = new long[n + 1];
		Arrays.fill(dp2, INF);
		Arrays.fill(dp3, INF);
		dp2[0] = dp3[0] = 0;
		for (int i = 0; i < n; i++) {
			if (i + 1 - 2 >= 0) {
				dp2[i + 1] = Math.min(dp2[i + 1], dp2[i + 1 - 2] + y[i] - y[i - 1]);
				dp2[i + 1] = Math.min(dp2[i + 1], dp3[i + 1 - 2] + y[i] - y[i - 1]);
			}
			if (i + 1 - 3 >= 0) {
				dp3[i + 1] = Math.min(dp3[i + 1], dp3[i + 1 - 3] + y[i] - y[i - 1] + y[i - 1] - y[i - 2]);
				dp3[i + 1] = Math.min(dp3[i + 1], dp2[i + 1 - 3] + y[i] - y[i - 1] + y[i - 1] - y[i - 2]);
			}
		}
		
		pr.println(Math.min(dp2[n], dp3[n]));
	}
	
	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0