結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2021-11-11 18:19:45
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 1,870 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 77,652 KB
実行使用メモリ 421,564 KB
最終ジャッジ日時 2024-05-02 13:34:47
合計ジャッジ時間 9,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
36,816 KB
testcase_01 AC 48 ms
37,100 KB
testcase_02 AC 49 ms
37,024 KB
testcase_03 AC 48 ms
37,104 KB
testcase_04 AC 52 ms
36,964 KB
testcase_05 AC 47 ms
37,312 KB
testcase_06 AC 48 ms
36,944 KB
testcase_07 AC 57 ms
37,552 KB
testcase_08 AC 78 ms
40,488 KB
testcase_09 AC 112 ms
50,424 KB
testcase_10 AC 139 ms
46,352 KB
testcase_11 AC 232 ms
65,628 KB
testcase_12 AC 195 ms
57,192 KB
testcase_13 AC 735 ms
118,348 KB
testcase_14 MLE -
testcase_15 AC 765 ms
118,420 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 AC 118 ms
56,488 KB
testcase_19 AC 393 ms
76,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] points;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int p = sc.nextInt();
        points = new int[n][4];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < 3; j++) {
                points[i][j] = sc.nextInt();
            }
            points[i][3] = 1;
        }
        dp = new int[n][p + 1];
        double all = dfw(n - 1, p);
        System.out.println(all / n);
    }
    
    static int dfw(int idx, int p) {
        if (p < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (idx < 0) {
            return 0;
        }
        if ((idx + 1) * 3 <= p) {
            return idx + 1;
        }
        if (dp[idx][p] == 0) {
            dp[idx][p] = Integer.MAX_VALUE;
            for (int i = 0; i < 4; i++) {
                dp[idx][p] = Math.min(dp[idx][p], dfw(idx - 1, p - i) + points[idx][i]);
            }
        }
        return dp[idx][p];
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0