結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2022-09-27 11:22:58
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,807 bytes
コンパイル時間 2,331 ms
コンパイル使用メモリ 78,968 KB
実行使用メモリ 183,996 KB
最終ジャッジ日時 2024-06-02 00:55:54
合計ジャッジ時間 23,621 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
42,820 KB
testcase_01 AC 53 ms
37,252 KB
testcase_02 AC 53 ms
36,808 KB
testcase_03 AC 53 ms
37,316 KB
testcase_04 AC 217 ms
39,732 KB
testcase_05 AC 195 ms
39,512 KB
testcase_06 AC 178 ms
39,780 KB
testcase_07 AC 206 ms
39,848 KB
testcase_08 AC 223 ms
39,884 KB
testcase_09 AC 211 ms
41,540 KB
testcase_10 AC 176 ms
40,928 KB
testcase_11 AC 443 ms
46,792 KB
testcase_12 AC 266 ms
42,904 KB
testcase_13 AC 154 ms
40,520 KB
testcase_14 AC 737 ms
75,944 KB
testcase_15 AC 412 ms
55,704 KB
testcase_16 AC 1,032 ms
80,560 KB
testcase_17 AC 1,349 ms
113,284 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,563 ms
119,540 KB
testcase_21 AC 1,764 ms
119,608 KB
testcase_22 AC 184 ms
47,648 KB
testcase_23 AC 823 ms
75,868 KB
testcase_24 AC 540 ms
39,892 KB
testcase_25 AC 417 ms
40,040 KB
testcase_26 AC 238 ms
39,416 KB
testcase_27 AC 311 ms
39,624 KB
testcase_28 AC 433 ms
39,960 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