結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー tentententen
提出日時 2020-08-26 16:30:02
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,554 bytes
コンパイル時間 2,366 ms
コンパイル使用メモリ 78,300 KB
実行使用メモリ 251,604 KB
最終ジャッジ日時 2024-11-07 13:10:01
合計ジャッジ時間 57,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,492 KB
testcase_01 AC 136 ms
41,664 KB
testcase_02 AC 153 ms
41,604 KB
testcase_03 AC 138 ms
41,252 KB
testcase_04 AC 136 ms
41,532 KB
testcase_05 AC 133 ms
41,244 KB
testcase_06 AC 153 ms
41,788 KB
testcase_07 AC 139 ms
41,324 KB
testcase_08 AC 144 ms
41,588 KB
testcase_09 AC 244 ms
48,144 KB
testcase_10 AC 209 ms
45,000 KB
testcase_11 AC 219 ms
48,292 KB
testcase_12 AC 482 ms
92,540 KB
testcase_13 AC 1,423 ms
225,860 KB
testcase_14 AC 378 ms
65,980 KB
testcase_15 AC 346 ms
72,128 KB
testcase_16 AC 473 ms
80,200 KB
testcase_17 AC 563 ms
105,096 KB
testcase_18 AC 138 ms
41,728 KB
testcase_19 AC 141 ms
41,652 KB
testcase_20 AC 138 ms
41,272 KB
testcase_21 AC 186 ms
44,536 KB
testcase_22 AC 194 ms
43,040 KB
testcase_23 AC 193 ms
43,192 KB
testcase_24 TLE -
testcase_25 AC 1,937 ms
250,996 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,352 ms
240,708 KB
testcase_29 AC 1,355 ms
240,744 KB
testcase_30 AC 138 ms
41,456 KB
testcase_31 AC 138 ms
41,264 KB
testcase_32 AC 194 ms
42,976 KB
testcase_33 AC 196 ms
43,488 KB
testcase_34 AC 180 ms
48,224 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,936 ms
251,128 KB
testcase_38 AC 1,876 ms
251,084 KB
testcase_39 AC 1,896 ms
250,812 KB
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 1,340 ms
240,924 KB
testcase_47 AC 1,326 ms
240,956 KB
testcase_48 AC 1,334 ms
240,940 KB
testcase_49 AC 1,335 ms
241,572 KB
testcase_50 AC 1,327 ms
240,620 KB
testcase_51 AC 1,334 ms
240,384 KB
testcase_52 AC 1,536 ms
221,744 KB
testcase_53 AC 1,562 ms
240,840 KB
testcase_54 AC 548 ms
240,828 KB
権限があれば一括ダウンロードができます

ソースコード

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];
        for (int[][] arr1 : dp) {
            for (int[] arr : arr1) {
                Arrays.fill(arr, -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] == -1) {
             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