結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー tentententen
提出日時 2020-08-26 16:28:34
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,420 bytes
コンパイル時間 2,949 ms
コンパイル使用メモリ 77,656 KB
実行使用メモリ 258,092 KB
最終ジャッジ日時 2024-11-07 13:08:47
合計ジャッジ時間 14,403 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
60,932 KB
testcase_01 AC 116 ms
53,164 KB
testcase_02 AC 139 ms
54,048 KB
testcase_03 AC 119 ms
52,988 KB
testcase_04 AC 131 ms
53,928 KB
testcase_05 AC 115 ms
52,816 KB
testcase_06 AC 148 ms
54,548 KB
testcase_07 AC 133 ms
54,384 KB
testcase_08 AC 130 ms
53,908 KB
testcase_09 AC 227 ms
59,584 KB
testcase_10 AC 191 ms
56,792 KB
testcase_11 AC 199 ms
59,644 KB
testcase_12 AC 463 ms
104,972 KB
testcase_13 AC 1,634 ms
235,496 KB
testcase_14 AC 356 ms
76,764 KB
testcase_15 AC 343 ms
82,284 KB
testcase_16 AC 395 ms
90,000 KB
testcase_17 AC 664 ms
118,096 KB
testcase_18 AC 128 ms
54,140 KB
testcase_19 AC 133 ms
54,052 KB
testcase_20 AC 135 ms
54,084 KB
testcase_21 AC 171 ms
56,704 KB
testcase_22 AC 162 ms
54,684 KB
testcase_23 AC 192 ms
56,956 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static Pizza[] pizzas;
    static int[][][] dp;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int k = sc.nextInt();
        pizzas = new Pizza[n];
        for (int i = 0; i < n; i++) {
            pizzas[i] = new Pizza(sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(pizzas);
        dp = new int[2][n][k + 1];
        System.out.println(dfw(0, n - 1, k));
    }
    
    static int dfw(int type, int idx, int cost) {
        if (cost < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp[type][idx][cost] == 0) {
             if (type == 0) {
                dp[type][idx][cost] = Math.max(dfw(0, idx - 1, cost), dfw(1, idx - 1, cost - pizzas[idx].cost) + pizzas[idx].value);
            } else {
                dp[type][idx][cost] = Math.max(dfw(1, idx - 1, cost), dfw(0, idx - 1, cost) + pizzas[idx].value);
            }
        }
        return dp[type][idx][cost];
    }
    
    static class Pizza implements Comparable<Pizza> {
        int cost;
        int value;
        
        public Pizza(int cost, int value) {
            this.cost = cost;
            this.value = value;
        }
        
        public int compareTo(Pizza another) {
            return cost - another.cost;
        }
    }
}
0