結果

問題 No.2232 Miser's Gift
ユーザー tentententen
提出日時 2023-04-21 11:58:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 602 ms / 2,000 ms
コード長 2,441 bytes
コンパイル時間 3,962 ms
コンパイル使用メモリ 93,052 KB
実行使用メモリ 131,560 KB
最終ジャッジ日時 2024-11-06 08:09:40
合計ジャッジ時間 23,789 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,424 KB
testcase_01 AC 57 ms
50,124 KB
testcase_02 AC 56 ms
50,460 KB
testcase_03 AC 409 ms
129,000 KB
testcase_04 AC 406 ms
131,248 KB
testcase_05 AC 138 ms
61,388 KB
testcase_06 AC 57 ms
50,544 KB
testcase_07 AC 147 ms
56,768 KB
testcase_08 AC 472 ms
131,312 KB
testcase_09 AC 469 ms
131,176 KB
testcase_10 AC 466 ms
131,240 KB
testcase_11 AC 466 ms
131,144 KB
testcase_12 AC 465 ms
131,372 KB
testcase_13 AC 417 ms
130,800 KB
testcase_14 AC 414 ms
129,404 KB
testcase_15 AC 419 ms
129,424 KB
testcase_16 AC 414 ms
128,960 KB
testcase_17 AC 415 ms
130,708 KB
testcase_18 AC 407 ms
129,312 KB
testcase_19 AC 401 ms
129,396 KB
testcase_20 AC 393 ms
129,180 KB
testcase_21 AC 399 ms
128,976 KB
testcase_22 AC 395 ms
129,316 KB
testcase_23 AC 602 ms
131,404 KB
testcase_24 AC 567 ms
131,300 KB
testcase_25 AC 597 ms
131,444 KB
testcase_26 AC 581 ms
131,332 KB
testcase_27 AC 583 ms
131,300 KB
testcase_28 AC 514 ms
131,288 KB
testcase_29 AC 514 ms
131,388 KB
testcase_30 AC 510 ms
131,288 KB
testcase_31 AC 518 ms
131,188 KB
testcase_32 AC 534 ms
131,560 KB
testcase_33 AC 425 ms
130,744 KB
testcase_34 AC 418 ms
130,860 KB
testcase_35 AC 420 ms
130,864 KB
testcase_36 AC 421 ms
130,892 KB
testcase_37 AC 429 ms
131,372 KB
testcase_38 AC 84 ms
50,900 KB
testcase_39 AC 85 ms
51,328 KB
testcase_40 AC 88 ms
51,380 KB
testcase_41 AC 85 ms
51,024 KB
testcase_42 AC 86 ms
51,132 KB
testcase_43 AC 83 ms
51,036 KB
testcase_44 AC 85 ms
51,320 KB
testcase_45 AC 87 ms
51,160 KB
testcase_46 AC 83 ms
51,460 KB
testcase_47 AC 85 ms
51,432 KB
testcase_48 AC 60 ms
50,372 KB
testcase_49 AC 60 ms
50,412 KB
testcase_50 AC 61 ms
50,372 KB
testcase_51 AC 60 ms
50,244 KB
testcase_52 AC 59 ms
50,152 KB
testcase_53 AC 59 ms
50,384 KB
testcase_54 AC 60 ms
50,504 KB
testcase_55 AC 59 ms
50,520 KB
testcase_56 AC 60 ms
50,140 KB
testcase_57 AC 59 ms
50,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] weights;
    static int[] values;
    static long[][] dp;
    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 long[n][w + 1];
        for (long[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        long base = dfw(n - 1, w);
        StringBuilder sb = new StringBuilder();
        for (int i = 1; i <= w; i++) {
            long current = dfw(n - 1, w - i);
            sb.append(base - current + 1).append("\n");
        }
        System.out.print(sb);
    }
    
    static long dfw(int idx, int v) {
        if (v < 0) {
            return Long.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