結果

問題 No.2317 Expression Menu
ユーザー tentententen
提出日時 2023-07-27 09:12:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 714 ms / 2,000 ms
コード長 2,418 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 95,960 KB
実行使用メモリ 255,440 KB
最終ジャッジ日時 2024-10-04 01:38:13
合計ジャッジ時間 23,136 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
36,528 KB
testcase_01 AC 51 ms
36,660 KB
testcase_02 AC 89 ms
53,428 KB
testcase_03 AC 573 ms
255,196 KB
testcase_04 AC 474 ms
255,008 KB
testcase_05 AC 634 ms
255,296 KB
testcase_06 AC 614 ms
255,172 KB
testcase_07 AC 566 ms
255,036 KB
testcase_08 AC 536 ms
254,984 KB
testcase_09 AC 648 ms
255,144 KB
testcase_10 AC 522 ms
255,020 KB
testcase_11 AC 648 ms
254,844 KB
testcase_12 AC 563 ms
255,136 KB
testcase_13 AC 579 ms
255,008 KB
testcase_14 AC 657 ms
255,084 KB
testcase_15 AC 589 ms
255,308 KB
testcase_16 AC 679 ms
255,272 KB
testcase_17 AC 544 ms
255,144 KB
testcase_18 AC 593 ms
255,400 KB
testcase_19 AC 625 ms
255,316 KB
testcase_20 AC 685 ms
255,104 KB
testcase_21 AC 574 ms
254,876 KB
testcase_22 AC 536 ms
255,168 KB
testcase_23 AC 642 ms
255,420 KB
testcase_24 AC 694 ms
255,168 KB
testcase_25 AC 634 ms
255,244 KB
testcase_26 AC 714 ms
255,040 KB
testcase_27 AC 656 ms
254,912 KB
testcase_28 AC 635 ms
255,400 KB
testcase_29 AC 679 ms
255,440 KB
testcase_30 AC 654 ms
255,168 KB
testcase_31 AC 608 ms
255,304 KB
testcase_32 AC 627 ms
255,348 KB
testcase_33 AC 48 ms
36,596 KB
testcase_34 AC 47 ms
36,976 KB
testcase_35 AC 49 ms
37,788 KB
testcase_36 AC 47 ms
38,744 KB
testcase_37 AC 48 ms
37,156 KB
testcase_38 AC 313 ms
255,252 KB
testcase_39 AC 317 ms
255,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] amounts;
    static int[] weights;
    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();
        amounts = new int[n];
        weights = new int[n];
        values = new int[n];
        dp = new long[n][x + 1][y + 1];
        for (int i = 0; i < n; i++) {
            amounts[i] = sc.nextInt();
            weights[i] = sc.nextInt();
            values[i] = sc.nextInt();
            for (long[] arr : dp[i]) {
                Arrays.fill(arr, -1);
            }
        }
        System.out.println(dfw(n - 1, x, y));
    }
    
    static long dfw(int idx, int v, int w) {
        if (v < 0 || w < 0) {
            return Long.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 - amounts[idx], w - weights[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