結果

問題 No.472 平均順位
ユーザー tentententen
提出日時 2021-11-11 18:22:46
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,972 bytes
コンパイル時間 2,483 ms
コンパイル使用メモリ 78,528 KB
実行使用メモリ 509,048 KB
最終ジャッジ日時 2024-05-02 13:40:56
合計ジャッジ時間 12,385 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
42,576 KB
testcase_01 AC 50 ms
36,988 KB
testcase_02 AC 48 ms
36,864 KB
testcase_03 AC 46 ms
36,756 KB
testcase_04 AC 83 ms
39,104 KB
testcase_05 AC 48 ms
37,160 KB
testcase_06 AC 55 ms
36,988 KB
testcase_07 AC 90 ms
40,740 KB
testcase_08 AC 155 ms
52,056 KB
testcase_09 AC 503 ms
114,796 KB
testcase_10 AC 711 ms
126,660 KB
testcase_11 TLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] points;
    static ArrayList<HashMap<Integer, Integer>> dp = new ArrayList<>();
    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.add(new HashMap<>());
        }
        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.get(idx).containsKey(p)) {
            int value = Integer.MAX_VALUE;
            for (int i = 0; i < 4; i++) {
                value = Math.min(value, dfw(idx - 1, p - i) + points[idx][i]);
            }
            dp.get(idx).put(p, value);
        }
        return dp.get(idx).get(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