結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2020-09-11 12:58:15
言語 Java
(openjdk 23)
結果
MLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 2,894 ms
コンパイル使用メモリ 77,016 KB
実行使用メモリ 368,612 KB
最終ジャッジ日時 2024-12-25 20:03:25
合計ジャッジ時間 16,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
41,040 KB
testcase_01 AC 156 ms
41,328 KB
testcase_02 AC 165 ms
41,248 KB
testcase_03 AC 156 ms
41,096 KB
testcase_04 AC 204 ms
41,524 KB
testcase_05 AC 168 ms
41,004 KB
testcase_06 AC 175 ms
41,324 KB
testcase_07 AC 204 ms
41,708 KB
testcase_08 AC 277 ms
44,628 KB
testcase_09 AC 376 ms
55,576 KB
testcase_10 AC 371 ms
53,172 KB
testcase_11 AC 589 ms
77,120 KB
testcase_12 AC 543 ms
73,344 KB
testcase_13 AC 837 ms
125,964 KB
testcase_14 MLE -
testcase_15 AC 866 ms
124,984 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 454 ms
71,796 KB
testcase_19 AC 731 ms
96,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int p = sc.nextInt();
    	int[][] dp = new int[n + 1][p + 1];
    	for (int[] arr : dp) {
    	    Arrays.fill(arr, Integer.MAX_VALUE / 2);
    	}
    	dp[0][0] = 0;
    	for (int i = 1; i <= n; i++) {
    	    int zero = sc.nextInt();
    	    int one = sc.nextInt();
    	    int two = sc.nextInt();
    	    for (int j = Math.min(p, i * 3); j >= 0; j--) {
    	        dp[i][j] = Math.min(dp[i][j], dp[i - 1][j] + zero);
    	        if (j - 1 >= 0) {
    	            dp[i][j] = Math.min(dp[i][j], dp[i - 1][j - 1] + one);
    	        }
    	        if (j - 2 >= 0) {
    	            dp[i][j] = Math.min(dp[i][j], dp[i - 1][j - 2] + two);
    	        }
    	        if (j - 3 >= 0) {
    	            dp[i][j] = Math.min(dp[i][j], dp[i - 1][j - 3] + 1);
    	        }
    	    }
    	}
    	System.out.println(dp[n][p] / (double)n);
	}
}
0