結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2023-02-24 17:12:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,855 ms / 2,000 ms
コード長 2,487 bytes
コンパイル時間 2,915 ms
コンパイル使用メモリ 91,608 KB
実行使用メモリ 254,484 KB
最終ジャッジ日時 2024-09-13 02:03:11
合計ジャッジ時間 19,713 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,280 KB
testcase_01 AC 55 ms
50,352 KB
testcase_02 AC 55 ms
50,316 KB
testcase_03 AC 54 ms
50,452 KB
testcase_04 AC 84 ms
51,688 KB
testcase_05 AC 80 ms
51,564 KB
testcase_06 AC 81 ms
51,304 KB
testcase_07 AC 84 ms
51,840 KB
testcase_08 AC 84 ms
51,816 KB
testcase_09 AC 126 ms
57,928 KB
testcase_10 AC 102 ms
55,320 KB
testcase_11 AC 157 ms
62,560 KB
testcase_12 AC 136 ms
58,104 KB
testcase_13 AC 93 ms
55,112 KB
testcase_14 AC 424 ms
114,944 KB
testcase_15 AC 278 ms
85,952 KB
testcase_16 AC 581 ms
130,388 KB
testcase_17 AC 747 ms
189,496 KB
testcase_18 AC 1,304 ms
238,848 KB
testcase_19 AC 1,273 ms
231,052 KB
testcase_20 AC 858 ms
187,152 KB
testcase_21 AC 1,134 ms
230,368 KB
testcase_22 AC 146 ms
62,348 KB
testcase_23 AC 493 ms
131,512 KB
testcase_24 AC 93 ms
54,624 KB
testcase_25 AC 84 ms
51,888 KB
testcase_26 AC 65 ms
50,896 KB
testcase_27 AC 83 ms
51,680 KB
testcase_28 AC 84 ms
51,804 KB
testcase_29 AC 1,283 ms
250,312 KB
testcase_30 AC 1,379 ms
253,636 KB
testcase_31 AC 55 ms
50,412 KB
testcase_32 AC 54 ms
50,536 KB
testcase_33 AC 58 ms
51,108 KB
testcase_34 AC 1,855 ms
254,484 KB
testcase_35 AC 367 ms
250,628 KB
testcase_36 AC 1,357 ms
253,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int c;
    static int[] prices;
    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();
        prices = new int[n];
        values = new int[n];
        for (int i = 0; i < n; i++) {
            prices[i] = sc.nextInt();
            values[i] = sc.nextInt();
        }
        dp = new int[n * 2][v + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n * 2 - 1, v));
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v);
            if (idx % 2 == 1) {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, v - prices[idx / 2]) + c + values[idx / 2]);
            } else {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx, v - prices[idx / 2]) + values[idx / 2]);
            }
        }
        return dp[idx][v];
    }
}
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