結果

問題 No.1947 質より種類数
ユーザー tentententen
提出日時 2023-04-19 13:32:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,956 ms / 2,000 ms
コード長 2,540 bytes
コンパイル時間 2,834 ms
コンパイル使用メモリ 91,444 KB
実行使用メモリ 251,556 KB
最終ジャッジ日時 2024-10-14 13:31:37
合計ジャッジ時間 19,637 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,788 KB
testcase_01 AC 53 ms
37,168 KB
testcase_02 AC 52 ms
36,916 KB
testcase_03 AC 53 ms
37,092 KB
testcase_04 AC 84 ms
39,348 KB
testcase_05 AC 78 ms
38,452 KB
testcase_06 AC 80 ms
38,572 KB
testcase_07 AC 80 ms
38,688 KB
testcase_08 AC 85 ms
39,368 KB
testcase_09 AC 110 ms
46,840 KB
testcase_10 AC 96 ms
42,204 KB
testcase_11 AC 151 ms
51,096 KB
testcase_12 AC 132 ms
47,000 KB
testcase_13 AC 92 ms
41,752 KB
testcase_14 AC 433 ms
101,136 KB
testcase_15 AC 278 ms
75,576 KB
testcase_16 AC 599 ms
120,192 KB
testcase_17 AC 782 ms
175,992 KB
testcase_18 AC 1,380 ms
230,396 KB
testcase_19 AC 1,204 ms
217,312 KB
testcase_20 AC 893 ms
175,488 KB
testcase_21 AC 1,107 ms
218,448 KB
testcase_22 AC 140 ms
51,188 KB
testcase_23 AC 505 ms
121,696 KB
testcase_24 AC 91 ms
40,556 KB
testcase_25 AC 85 ms
39,544 KB
testcase_26 AC 62 ms
37,704 KB
testcase_27 AC 80 ms
38,544 KB
testcase_28 AC 82 ms
38,972 KB
testcase_29 AC 1,305 ms
241,892 KB
testcase_30 AC 1,198 ms
238,336 KB
testcase_31 AC 52 ms
37,072 KB
testcase_32 AC 52 ms
36,912 KB
testcase_33 AC 55 ms
37,596 KB
testcase_34 AC 1,956 ms
251,556 KB
testcase_35 AC 432 ms
238,480 KB
testcase_36 AC 1,299 ms
241,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    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 m = sc.nextInt();
        int c = sc.nextInt();
        prices = new int[n * 2];
        values = new int[n * 2];
        for (int i = 0; i < n; i++) {
            prices[i * 2] = sc.nextInt();
            prices[i * 2 + 1] = prices[i * 2];
            values[i * 2] = sc.nextInt();
            values[i * 2 + 1] = values[i * 2] + c;
        }
        dp = new int[n * 2][m + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw(n * 2 - 1, m));
    }
    
    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 == 0) {
                dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx, v - prices[idx]) + values[idx]);
            } else {
                dp[idx][v] = Math.max(dfw(idx - 1, v), dfw(idx - 1, v - prices[idx]) + values[idx]);
            }
        }
        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