結果

問題 No.2232 Miser's Gift
ユーザー tentententen
提出日時 2023-03-06 10:54:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 451 ms / 2,000 ms
コード長 2,403 bytes
コンパイル時間 2,794 ms
コンパイル使用メモリ 91,944 KB
実行使用メモリ 96,040 KB
最終ジャッジ日時 2024-09-18 01:48:38
合計ジャッジ時間 17,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,952 KB
testcase_01 AC 48 ms
37,292 KB
testcase_02 AC 48 ms
37,268 KB
testcase_03 AC 314 ms
79,796 KB
testcase_04 AC 296 ms
80,864 KB
testcase_05 AC 122 ms
46,716 KB
testcase_06 AC 49 ms
37,120 KB
testcase_07 AC 128 ms
43,616 KB
testcase_08 AC 357 ms
95,992 KB
testcase_09 AC 354 ms
96,008 KB
testcase_10 AC 362 ms
95,700 KB
testcase_11 AC 360 ms
96,004 KB
testcase_12 AC 352 ms
96,008 KB
testcase_13 AC 333 ms
79,840 KB
testcase_14 AC 337 ms
79,804 KB
testcase_15 AC 345 ms
80,036 KB
testcase_16 AC 318 ms
79,900 KB
testcase_17 AC 322 ms
80,144 KB
testcase_18 AC 311 ms
79,952 KB
testcase_19 AC 303 ms
80,116 KB
testcase_20 AC 304 ms
79,936 KB
testcase_21 AC 308 ms
79,768 KB
testcase_22 AC 309 ms
80,128 KB
testcase_23 AC 451 ms
95,960 KB
testcase_24 AC 428 ms
96,040 KB
testcase_25 AC 437 ms
95,492 KB
testcase_26 AC 420 ms
95,312 KB
testcase_27 AC 417 ms
95,396 KB
testcase_28 AC 374 ms
95,480 KB
testcase_29 AC 372 ms
95,476 KB
testcase_30 AC 372 ms
96,012 KB
testcase_31 AC 376 ms
95,416 KB
testcase_32 AC 376 ms
95,992 KB
testcase_33 AC 338 ms
80,720 KB
testcase_34 AC 323 ms
80,516 KB
testcase_35 AC 325 ms
80,456 KB
testcase_36 AC 330 ms
80,564 KB
testcase_37 AC 337 ms
80,912 KB
testcase_38 AC 77 ms
38,496 KB
testcase_39 AC 77 ms
38,424 KB
testcase_40 AC 75 ms
38,936 KB
testcase_41 AC 72 ms
38,528 KB
testcase_42 AC 71 ms
38,444 KB
testcase_43 AC 75 ms
37,944 KB
testcase_44 AC 77 ms
38,080 KB
testcase_45 AC 78 ms
38,728 KB
testcase_46 AC 74 ms
38,408 KB
testcase_47 AC 73 ms
38,700 KB
testcase_48 AC 52 ms
37,360 KB
testcase_49 AC 52 ms
37,376 KB
testcase_50 AC 53 ms
37,420 KB
testcase_51 AC 52 ms
36,796 KB
testcase_52 AC 51 ms
36,832 KB
testcase_53 AC 51 ms
37,092 KB
testcase_54 AC 50 ms
37,108 KB
testcase_55 AC 50 ms
37,176 KB
testcase_56 AC 50 ms
37,120 KB
testcase_57 AC 52 ms
37,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static int[] weights;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int w = sc.nextInt();
        weights = new int[n];
        values = new int[n];
        for (int i = 0; i < n; i++) {
            weights[i] = sc.nextInt();
            values[i] = sc.nextInt();
        }
        dp = new int[n][w + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int base = dfw(n - 1, w);
        StringBuilder sb = new StringBuilder();
        for (int i = 1; i <= w; i++) {
            sb.append(base - dfw(n - 1, w - i) + 1).append("\n");
        }
        System.out.print(sb);
    }
    
    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] = Math.max(dfw(idx - 1, v), dfw(idx - 1, v - weights[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