結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2022-08-10 08:27:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,693 ms / 2,000 ms
コード長 2,011 bytes
コンパイル時間 3,804 ms
コンパイル使用メモリ 77,676 KB
実行使用メモリ 241,448 KB
最終ジャッジ日時 2024-09-20 12:53:37
合計ジャッジ時間 22,222 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
37,108 KB
testcase_01 AC 48 ms
37,176 KB
testcase_02 AC 49 ms
36,888 KB
testcase_03 AC 48 ms
36,516 KB
testcase_04 AC 70 ms
39,284 KB
testcase_05 AC 77 ms
38,556 KB
testcase_06 AC 79 ms
38,596 KB
testcase_07 AC 80 ms
38,680 KB
testcase_08 AC 84 ms
39,316 KB
testcase_09 AC 141 ms
48,392 KB
testcase_10 AC 116 ms
44,072 KB
testcase_11 AC 187 ms
52,960 KB
testcase_12 AC 152 ms
48,572 KB
testcase_13 AC 111 ms
43,468 KB
testcase_14 AC 556 ms
102,676 KB
testcase_15 AC 344 ms
77,192 KB
testcase_16 AC 756 ms
119,772 KB
testcase_17 AC 1,014 ms
176,200 KB
testcase_18 AC 1,693 ms
226,508 KB
testcase_19 AC 1,476 ms
215,036 KB
testcase_20 AC 1,099 ms
174,712 KB
testcase_21 AC 1,419 ms
218,176 KB
testcase_22 AC 173 ms
52,896 KB
testcase_23 AC 629 ms
121,160 KB
testcase_24 AC 100 ms
41,180 KB
testcase_25 AC 84 ms
39,620 KB
testcase_26 AC 74 ms
38,380 KB
testcase_27 AC 77 ms
38,784 KB
testcase_28 AC 82 ms
39,788 KB
testcase_29 AC 1,579 ms
241,368 KB
testcase_30 AC 1,559 ms
241,448 KB
testcase_31 AC 48 ms
36,860 KB
testcase_32 AC 48 ms
37,084 KB
testcase_33 AC 51 ms
37,504 KB
testcase_34 AC 984 ms
241,136 KB
testcase_35 AC 386 ms
237,088 KB
testcase_36 AC 1,566 ms
241,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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 {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0