結果

問題 No.615 集合に分けよう
ユーザー tentententen
提出日時 2020-09-05 11:36:30
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 892 bytes
コンパイル時間 2,732 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 61,620 KB
最終ジャッジ日時 2024-05-05 23:05:55
合計ジャッジ時間 9,419 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
60,892 KB
testcase_01 AC 122 ms
54,060 KB
testcase_02 AC 122 ms
53,964 KB
testcase_03 AC 106 ms
52,984 KB
testcase_04 AC 115 ms
53,928 KB
testcase_05 AC 114 ms
53,760 KB
testcase_06 AC 126 ms
54,016 KB
testcase_07 AC 130 ms
53,968 KB
testcase_08 AC 134 ms
54,364 KB
testcase_09 AC 154 ms
54,148 KB
testcase_10 AC 143 ms
54,532 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static long[] arr;
    static long[][] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int k = sc.nextInt();
    	arr = new long[n];
    	for (int i = 0; i < n; i++) {
    	    arr[i] = sc.nextLong();
    	}
    	Arrays.sort(arr);
    	dp = new long[n][k];
    	System.out.println(dfw(n - 1, k - 1));
	}
	
	static long dfw(int idx, int remain) {
	    if (idx < 0) {
	        return 0;
	    }
	    if (remain < 0) {
	        return Long.MAX_VALUE / 100;
	    }
	    if (dp[idx][remain] == 0) {
	        long target = arr[idx];
	        long min = Long.MAX_VALUE / 100;
	        for (int i = idx; i >= remain; i--) {
	            min = Math.min(min, dfw(i - 1, remain - 1) + target - arr[i]);
	        }
	        dp[idx][remain] = min;
	    }
	    return dp[idx][remain];
	}
}
0