結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2023-02-24 17:15:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,331 ms / 2,000 ms
コード長 2,550 bytes
コンパイル時間 3,718 ms
コンパイル使用メモリ 91,728 KB
実行使用メモリ 253,252 KB
最終ジャッジ日時 2024-09-13 02:05:31
合計ジャッジ時間 18,272 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,624 KB
testcase_01 AC 54 ms
50,484 KB
testcase_02 AC 55 ms
50,328 KB
testcase_03 AC 55 ms
50,604 KB
testcase_04 AC 88 ms
52,144 KB
testcase_05 AC 83 ms
53,804 KB
testcase_06 AC 84 ms
51,948 KB
testcase_07 AC 85 ms
51,500 KB
testcase_08 AC 87 ms
52,180 KB
testcase_09 AC 127 ms
58,160 KB
testcase_10 AC 108 ms
55,164 KB
testcase_11 AC 154 ms
62,492 KB
testcase_12 AC 137 ms
58,104 KB
testcase_13 AC 99 ms
55,044 KB
testcase_14 AC 435 ms
116,540 KB
testcase_15 AC 275 ms
85,472 KB
testcase_16 AC 603 ms
130,180 KB
testcase_17 AC 794 ms
188,888 KB
testcase_18 AC 1,331 ms
238,956 KB
testcase_19 AC 1,167 ms
226,204 KB
testcase_20 AC 883 ms
186,512 KB
testcase_21 AC 1,050 ms
229,760 KB
testcase_22 AC 148 ms
62,296 KB
testcase_23 AC 503 ms
133,016 KB
testcase_24 AC 94 ms
52,976 KB
testcase_25 AC 89 ms
52,176 KB
testcase_26 AC 68 ms
51,160 KB
testcase_27 AC 84 ms
51,932 KB
testcase_28 AC 87 ms
52,076 KB
testcase_29 AC 1,162 ms
250,816 KB
testcase_30 AC 1,264 ms
253,252 KB
testcase_31 AC 55 ms
50,324 KB
testcase_32 AC 56 ms
50,432 KB
testcase_33 AC 59 ms
51,140 KB
testcase_34 AC 986 ms
251,720 KB
testcase_35 AC 343 ms
249,220 KB
testcase_36 AC 1,274 ms
252,544 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) {
            
            if (idx % 2 == 1) {
                dp[idx][v] = dfw(idx - 2, v);
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, v - prices[idx / 2]) + c + values[idx / 2]);
            } else {
                dp[idx][v] = dfw(idx - 1, v);
                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