結果

問題 No.472 平均順位
ユーザー htensaihtensai
提出日時 2020-01-30 13:52:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 1,665 bytes
コンパイル時間 2,598 ms
コンパイル使用メモリ 74,848 KB
実行使用メモリ 214,492 KB
最終ジャッジ日時 2023-10-14 08:25:18
合計ジャッジ時間 7,543 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
49,212 KB
testcase_01 AC 37 ms
49,748 KB
testcase_02 AC 36 ms
49,280 KB
testcase_03 AC 36 ms
49,388 KB
testcase_04 AC 43 ms
47,548 KB
testcase_05 AC 37 ms
49,416 KB
testcase_06 AC 40 ms
49,248 KB
testcase_07 AC 47 ms
49,412 KB
testcase_08 AC 72 ms
52,640 KB
testcase_09 AC 104 ms
57,916 KB
testcase_10 AC 129 ms
58,176 KB
testcase_11 AC 199 ms
76,924 KB
testcase_12 AC 173 ms
66,728 KB
testcase_13 AC 547 ms
122,440 KB
testcase_14 AC 891 ms
211,840 KB
testcase_15 AC 549 ms
122,240 KB
testcase_16 AC 468 ms
212,288 KB
testcase_17 AC 238 ms
214,492 KB
testcase_18 AC 93 ms
61,860 KB
testcase_19 AC 310 ms
81,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;

public class Main {
    static int[][] scores;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int p = Integer.parseInt(first[1]);
        scores = new int[n][3];
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", 3);
            for (int j = 0; j < 3; j++) {
                scores[i][j] = Integer.parseInt(line[j]);
            }
        }
        dp = new int[n][];
        for (int i = 0; i < n; i++) {
            dp[i] = new int[Math.min((i + 1) * 3 + 1, p + 1)];
        }
        System.out.println(dfw(n - 1, p) / (double)n);
    }
    
    static int dfw(int idx, int count) {
        if (count < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][count] != 0) {
            return dp[idx][count];
        }
        int min = Integer.MAX_VALUE / 2;
        if (idx * 3 >= count) {
            min = Math.min(min, dfw(idx - 1, count) + scores[idx][0]);
        }
        if (idx * 3 >= count - 1) {
            min = Math.min(min, dfw(idx - 1, count - 1) + scores[idx][1]);
        }
        if (idx * 3 >= count - 2) {
            min = Math.min(min, dfw(idx - 1, count - 2) + scores[idx][2]);
        }
        if (idx * 3 >= count - 3) {
            min = Math.min(min, dfw(idx - 1, count - 3) + 1);
        }
        dp[idx][count] = min;
        return min;
    }
}
0