結果

問題 No.472 平均順位
ユーザー htensaihtensai
提出日時 2019-11-19 11:09:51
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 899 bytes
コンパイル時間 1,795 ms
コンパイル使用メモリ 77,100 KB
実行使用メモリ 368,388 KB
最終ジャッジ日時 2024-10-03 06:23:33
合計ジャッジ時間 10,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,840 KB
testcase_01 AC 110 ms
54,104 KB
testcase_02 AC 102 ms
52,984 KB
testcase_03 AC 114 ms
54,160 KB
testcase_04 AC 143 ms
54,124 KB
testcase_05 AC 116 ms
54,036 KB
testcase_06 AC 127 ms
54,216 KB
testcase_07 AC 156 ms
54,220 KB
testcase_08 AC 187 ms
56,584 KB
testcase_09 AC 270 ms
65,288 KB
testcase_10 AC 282 ms
63,060 KB
testcase_11 AC 379 ms
87,136 KB
testcase_12 AC 347 ms
80,296 KB
testcase_13 AC 612 ms
134,388 KB
testcase_14 MLE -
testcase_15 AC 642 ms
136,008 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 318 ms
80,068 KB
testcase_19 AC 449 ms
105,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[][] prises;
    static int[][] dp;
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int p = sc.nextInt();
		prises = new int[3][n + 1];
		dp = new int[p + 1][n + 1];
		for (int i = 1; i <= n; i++) {
		    for (int j = 0; j < 3; j++) {
		        prises[j][i] = sc.nextInt();
		    }
		}
		double sum = dfw(p, n);
		System.out.println(sum / n);
	}
	
	static int dfw(int point, int idx) {
	    if (point < 0) {
	        return Integer.MAX_VALUE / 2 + 1;
	    }
	    if (idx == 0) {
	        return 0;
	    }
	    if (dp[point][idx] != 0) {
	        return dp[point][idx] ;
	    }
	    int min = dfw(point - 3, idx - 1) + 1;
	    for (int j = 0; j < 3; j++) {
	        min = Math.min(min, prises[j][idx] + dfw(point - j, idx - 1));
	    }
	    dp[point][idx] = min;
	    return min;
	}
}
0