結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,276 KB
testcase_01 AC 52 ms
50,408 KB
testcase_02 AC 53 ms
50,300 KB
testcase_03 AC 54 ms
50,360 KB
testcase_04 AC 53 ms
50,264 KB
testcase_05 AC 54 ms
50,088 KB
testcase_06 AC 55 ms
50,000 KB
testcase_07 AC 54 ms
50,276 KB
testcase_08 AC 53 ms
50,172 KB
testcase_09 AC 111 ms
57,868 KB
testcase_10 AC 101 ms
54,064 KB
testcase_11 AC 107 ms
54,076 KB
testcase_12 AC 327 ms
89,704 KB
testcase_13 AC 1,213 ms
217,372 KB
testcase_14 AC 226 ms
77,232 KB
testcase_15 AC 179 ms
77,036 KB
testcase_16 AC 252 ms
87,160 KB
testcase_17 AC 380 ms
110,352 KB
testcase_18 AC 55 ms
50,612 KB
testcase_19 AC 57 ms
50,036 KB
testcase_20 AC 56 ms
50,580 KB
testcase_21 AC 100 ms
53,832 KB
testcase_22 AC 85 ms
51,152 KB
testcase_23 AC 89 ms
51,552 KB
testcase_24 TLE -
testcase_25 AC 1,736 ms
247,608 KB
testcase_26 AC 1,744 ms
251,616 KB
testcase_27 AC 1,725 ms
247,424 KB
testcase_28 AC 1,089 ms
247,344 KB
testcase_29 AC 1,073 ms
247,464 KB
testcase_30 AC 55 ms
50,412 KB
testcase_31 AC 53 ms
50,368 KB
testcase_32 AC 83 ms
51,544 KB
testcase_33 AC 85 ms
51,644 KB
testcase_34 AC 99 ms
56,892 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,746 ms
247,184 KB
testcase_38 AC 1,746 ms
247,016 KB
testcase_39 AC 1,738 ms
247,584 KB
testcase_40 AC 1,748 ms
247,344 KB
testcase_41 AC 1,743 ms
247,608 KB
testcase_42 AC 1,735 ms
247,600 KB
testcase_43 AC 1,736 ms
247,420 KB
testcase_44 AC 1,710 ms
247,496 KB
testcase_45 AC 1,738 ms
247,652 KB
testcase_46 AC 1,088 ms
247,904 KB
testcase_47 AC 1,106 ms
247,384 KB
testcase_48 AC 1,103 ms
247,328 KB
testcase_49 AC 1,053 ms
247,604 KB
testcase_50 AC 1,074 ms
247,916 KB
testcase_51 AC 1,090 ms
248,016 KB
testcase_52 AC 1,255 ms
217,832 KB
testcase_53 AC 1,265 ms
248,648 KB
testcase_54 AC 313 ms
247,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static Pizza[] pizzas;
    static int[][][] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String[] first = br.readLine().split(" ", 2);
        int n = Integer.parseInt(first[0]);
        int k = Integer.parseInt(first[1]);
        pizzas = new Pizza[n];
        for (int i = 0; i < n; i++) {
            String[] line = br.readLine().split(" ", 2);
            pizzas[i] = new Pizza(Integer.parseInt(line[0]), Integer.parseInt(line[1]));
        }
        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