結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2020-09-11 12:58:15
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,004 bytes
コンパイル時間 2,252 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 379,308 KB
最終ジャッジ日時 2024-06-07 14:30:44
合計ジャッジ時間 12,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,320 KB
testcase_01 AC 132 ms
54,080 KB
testcase_02 AC 133 ms
53,968 KB
testcase_03 AC 135 ms
53,952 KB
testcase_04 AC 168 ms
54,012 KB
testcase_05 AC 141 ms
54,056 KB
testcase_06 AC 151 ms
54,100 KB
testcase_07 AC 166 ms
54,336 KB
testcase_08 AC 235 ms
56,592 KB
testcase_09 AC 293 ms
63,804 KB
testcase_10 AC 270 ms
61,620 KB
testcase_11 AC 488 ms
92,660 KB
testcase_12 AC 448 ms
85,464 KB
testcase_13 AC 675 ms
136,420 KB
testcase_14 MLE -
testcase_15 AC 686 ms
135,000 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 382 ms
83,912 KB
testcase_19 AC 598 ms
110,248 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