結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2022-09-27 11:22:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,807 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 182,376 KB
最終ジャッジ日時 2023-08-24 03:43:46
合計ジャッジ時間 24,371 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,228 KB
testcase_01 AC 44 ms
49,180 KB
testcase_02 AC 44 ms
49,300 KB
testcase_03 AC 45 ms
49,328 KB
testcase_04 AC 208 ms
52,020 KB
testcase_05 AC 166 ms
52,144 KB
testcase_06 AC 157 ms
52,312 KB
testcase_07 AC 196 ms
51,848 KB
testcase_08 AC 218 ms
52,540 KB
testcase_09 AC 185 ms
53,780 KB
testcase_10 AC 162 ms
52,036 KB
testcase_11 AC 363 ms
56,696 KB
testcase_12 AC 258 ms
53,796 KB
testcase_13 AC 146 ms
51,996 KB
testcase_14 AC 714 ms
85,480 KB
testcase_15 AC 387 ms
65,880 KB
testcase_16 AC 1,031 ms
92,632 KB
testcase_17 AC 1,313 ms
113,032 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,548 ms
129,936 KB
testcase_21 AC 1,844 ms
129,344 KB
testcase_22 AC 163 ms
57,160 KB
testcase_23 AC 869 ms
85,412 KB
testcase_24 AC 472 ms
54,428 KB
testcase_25 AC 438 ms
52,172 KB
testcase_26 AC 223 ms
52,028 KB
testcase_27 AC 311 ms
52,848 KB
testcase_28 AC 456 ms
51,952 KB
testcase_29 TLE -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] prices;
    static int[] values;
    static int c;
    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][v + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 1, v));
    }
    
    static int dfw(int idx, int p) {
        if (idx < 0) {
            return 0;
        }
        if (dp[idx][p] < 0) {
            dp[idx][p] = dfw(idx - 1, p);
            for (int i = 1; i * prices[idx] <= p; i++) {
                dp[idx][p] = Math.max(dp[idx][p], dfw(idx - 1, p - i * prices[idx]) + c + values[idx] * i);
            }
        }
        return dp[idx][p];
    }
}
    
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 String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0