結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2022-05-25 09:04:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,695 ms / 2,000 ms
コード長 1,941 bytes
コンパイル時間 2,237 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 242,760 KB
最終ジャッジ日時 2024-09-20 14:41:17
合計ジャッジ時間 17,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
37,220 KB
testcase_01 AC 49 ms
37,148 KB
testcase_02 AC 46 ms
37,416 KB
testcase_03 AC 46 ms
37,456 KB
testcase_04 AC 75 ms
39,256 KB
testcase_05 AC 75 ms
38,572 KB
testcase_06 AC 74 ms
39,068 KB
testcase_07 AC 75 ms
38,724 KB
testcase_08 AC 79 ms
39,640 KB
testcase_09 AC 112 ms
47,496 KB
testcase_10 AC 87 ms
42,812 KB
testcase_11 AC 140 ms
51,764 KB
testcase_12 AC 120 ms
47,428 KB
testcase_13 AC 83 ms
42,192 KB
testcase_14 AC 406 ms
102,680 KB
testcase_15 AC 244 ms
76,600 KB
testcase_16 AC 559 ms
123,428 KB
testcase_17 AC 741 ms
183,732 KB
testcase_18 AC 1,368 ms
231,332 KB
testcase_19 AC 1,234 ms
233,640 KB
testcase_20 AC 865 ms
182,680 KB
testcase_21 AC 1,118 ms
233,252 KB
testcase_22 AC 131 ms
52,100 KB
testcase_23 AC 473 ms
124,108 KB
testcase_24 AC 83 ms
40,472 KB
testcase_25 AC 77 ms
39,460 KB
testcase_26 AC 59 ms
37,916 KB
testcase_27 AC 74 ms
38,588 KB
testcase_28 AC 77 ms
39,108 KB
testcase_29 AC 1,194 ms
242,328 KB
testcase_30 AC 1,097 ms
242,400 KB
testcase_31 AC 45 ms
37,108 KB
testcase_32 AC 44 ms
36,952 KB
testcase_33 AC 48 ms
37,560 KB
testcase_34 AC 1,695 ms
242,476 KB
testcase_35 AC 438 ms
241,976 KB
testcase_36 AC 1,094 ms
242,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int bonus;
    static int[] values;
    static int[] prices;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int v = sc.nextInt();
        bonus = sc.nextInt();
        dp = new int[n * 2][v + 1];
        values = new int[n];
        prices = new int[n];
        for (int i = 0; i < n; i++) {
            prices[i] = sc.nextInt();
            values[i] = sc.nextInt();
        }
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n * 2 - 1, v));
    }
    
    static int dfw(int idx, int p) {
        if (p < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][p] < 0) {
            int x = idx / 2;
            dp[idx][p] = dfw(idx - 1, p);
            if (idx % 2 == 0) {
                dp[idx][p] = Math.max(dp[idx][p], dfw(idx, p - prices[x]) + values[x]);
            } else {
                dp[idx][p] = Math.max(dp[idx][p], dfw(idx - 1, p - prices[x]) + values[x] + bonus);
            }
        }
        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 next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0