結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2023-02-24 15:55:31
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,383 bytes
コンパイル時間 5,111 ms
コンパイル使用メモリ 84,952 KB
実行使用メモリ 191,400 KB
最終ジャッジ日時 2024-09-12 23:17:51
合計ジャッジ時間 24,455 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
57,360 KB
testcase_01 AC 53 ms
50,488 KB
testcase_02 AC 54 ms
50,044 KB
testcase_03 AC 55 ms
50,388 KB
testcase_04 AC 208 ms
52,580 KB
testcase_05 AC 189 ms
52,584 KB
testcase_06 AC 175 ms
52,816 KB
testcase_07 AC 209 ms
52,544 KB
testcase_08 AC 229 ms
52,720 KB
testcase_09 AC 200 ms
54,744 KB
testcase_10 AC 162 ms
52,308 KB
testcase_11 AC 413 ms
57,444 KB
testcase_12 AC 267 ms
54,692 KB
testcase_13 AC 162 ms
52,616 KB
testcase_14 AC 733 ms
85,772 KB
testcase_15 AC 389 ms
65,756 KB
testcase_16 AC 1,011 ms
93,648 KB
testcase_17 AC 1,362 ms
113,164 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,524 ms
129,896 KB
testcase_21 AC 1,737 ms
129,684 KB
testcase_22 AC 177 ms
58,084 KB
testcase_23 AC 824 ms
85,780 KB
testcase_24 AC 497 ms
52,752 KB
testcase_25 AC 413 ms
52,836 KB
testcase_26 AC 228 ms
52,648 KB
testcase_27 AC 318 ms
52,740 KB
testcase_28 AC 479 ms
52,564 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.*;
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][v + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n - 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);
            for (int i = 1; i * prices[idx] <= v; i++) {
                dp[idx][v] = Math.max(dp[idx][v], dfw(idx - 1, v - prices[idx] * i) + c + values[idx] * i);
            }
        }
        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