結果

問題 No.838 Noelちゃんと星々3
ユーザー GrenacheGrenache
提出日時 2019-07-01 10:51:50
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

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