結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2022-05-23 18:35:09
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,793 bytes
コンパイル時間 2,534 ms
コンパイル使用メモリ 77,500 KB
実行使用メモリ 187,616 KB
最終ジャッジ日時 2024-09-20 13:19:35
合計ジャッジ時間 22,147 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
42,480 KB
testcase_01 AC 50 ms
37,216 KB
testcase_02 AC 51 ms
36,880 KB
testcase_03 AC 48 ms
37,260 KB
testcase_04 AC 200 ms
39,600 KB
testcase_05 AC 169 ms
39,688 KB
testcase_06 AC 166 ms
39,372 KB
testcase_07 AC 195 ms
39,644 KB
testcase_08 AC 215 ms
39,768 KB
testcase_09 AC 180 ms
41,324 KB
testcase_10 AC 161 ms
40,772 KB
testcase_11 AC 372 ms
46,744 KB
testcase_12 AC 269 ms
42,720 KB
testcase_13 AC 147 ms
40,432 KB
testcase_14 AC 675 ms
76,612 KB
testcase_15 AC 380 ms
56,016 KB
testcase_16 AC 935 ms
80,888 KB
testcase_17 AC 1,252 ms
103,288 KB
testcase_18 TLE -
testcase_19 AC 1,822 ms
123,328 KB
testcase_20 AC 1,391 ms
103,384 KB
testcase_21 AC 1,646 ms
123,368 KB
testcase_22 AC 162 ms
47,288 KB
testcase_23 AC 833 ms
76,936 KB
testcase_24 AC 513 ms
40,024 KB
testcase_25 AC 402 ms
39,728 KB
testcase_26 AC 230 ms
39,520 KB
testcase_27 AC 312 ms
39,472 KB
testcase_28 AC 436 ms
39,532 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 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][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();
            Arrays.fill(dp[i], -1);
        }
        System.out.println(dfw(n - 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) {
            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]) + bonus + i * values[idx]);
            }
        }
        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