結果

問題 No.2317 Expression Menu
ユーザー tentententen
提出日時 2023-05-30 09:51:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 820 ms / 2,000 ms
コード長 2,452 bytes
コンパイル時間 2,911 ms
コンパイル使用メモリ 96,792 KB
実行使用メモリ 255,116 KB
最終ジャッジ日時 2024-06-08 20:01:25
合計ジャッジ時間 25,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
36,992 KB
testcase_01 AC 47 ms
36,808 KB
testcase_02 AC 84 ms
53,356 KB
testcase_03 AC 619 ms
254,772 KB
testcase_04 AC 546 ms
255,084 KB
testcase_05 AC 815 ms
255,040 KB
testcase_06 AC 665 ms
255,004 KB
testcase_07 AC 559 ms
255,016 KB
testcase_08 AC 621 ms
254,812 KB
testcase_09 AC 820 ms
254,868 KB
testcase_10 AC 589 ms
254,940 KB
testcase_11 AC 714 ms
254,588 KB
testcase_12 AC 661 ms
254,932 KB
testcase_13 AC 637 ms
254,912 KB
testcase_14 AC 696 ms
254,888 KB
testcase_15 AC 645 ms
254,892 KB
testcase_16 AC 754 ms
254,836 KB
testcase_17 AC 591 ms
255,064 KB
testcase_18 AC 666 ms
254,896 KB
testcase_19 AC 679 ms
255,064 KB
testcase_20 AC 761 ms
254,740 KB
testcase_21 AC 644 ms
254,972 KB
testcase_22 AC 600 ms
254,908 KB
testcase_23 AC 695 ms
254,984 KB
testcase_24 AC 722 ms
254,980 KB
testcase_25 AC 691 ms
254,888 KB
testcase_26 AC 753 ms
254,960 KB
testcase_27 AC 709 ms
254,716 KB
testcase_28 AC 690 ms
254,912 KB
testcase_29 AC 739 ms
255,040 KB
testcase_30 AC 703 ms
255,092 KB
testcase_31 AC 666 ms
255,116 KB
testcase_32 AC 676 ms
255,064 KB
testcase_33 AC 45 ms
36,916 KB
testcase_34 AC 42 ms
36,992 KB
testcase_35 AC 43 ms
37,496 KB
testcase_36 AC 41 ms
36,728 KB
testcase_37 AC 44 ms
37,024 KB
testcase_38 AC 361 ms
254,752 KB
testcase_39 AC 363 ms
254,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] menu;
    static int[] volume;
    static int[] values;
    static long[][][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int x = sc.nextInt();
        int y = sc.nextInt();
        menu = new int[n];
        volume = new int[n];
        values = new int[n];
        for (int i = 0; i < n; i++) {
            menu[i] = sc.nextInt();
            volume[i] = sc.nextInt();
            values[i] = sc.nextInt();
        }
        dp = new long[n][x + 1][y + 1];
        for (long[][] arr1 : dp) {
            for (long[] arr2 : arr1) {
                Arrays.fill(arr2, -1);
            }
        }
        System.out.println(dfw(n - 1, x, y));
    }
    
    static long dfw(int idx, int v, int w) {
        if (v < 0 || w < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v][w] < 0) {
            dp[idx][v][w] = Math.max(dfw(idx - 1, v, w), dfw(idx - 1, v - menu[idx], w - volume[idx]) + values[idx]);
        }
        return dp[idx][v][w];
    }
}

class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0