結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー tentententen
提出日時 2023-01-31 19:52:59
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 3,009 bytes
コンパイル時間 2,929 ms
コンパイル使用メモリ 84,692 KB
実行使用メモリ 250,480 KB
最終ジャッジ日時 2024-06-30 21:24:53
合計ジャッジ時間 43,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
36,624 KB
testcase_01 AC 48 ms
37,128 KB
testcase_02 AC 50 ms
36,904 KB
testcase_03 AC 51 ms
37,224 KB
testcase_04 AC 50 ms
37,120 KB
testcase_05 AC 51 ms
36,520 KB
testcase_06 AC 53 ms
37,160 KB
testcase_07 AC 53 ms
36,684 KB
testcase_08 AC 54 ms
37,092 KB
testcase_09 AC 123 ms
47,600 KB
testcase_10 AC 99 ms
41,580 KB
testcase_11 AC 106 ms
42,080 KB
testcase_12 AC 343 ms
81,356 KB
testcase_13 AC 964 ms
217,768 KB
testcase_14 AC 277 ms
69,504 KB
testcase_15 AC 238 ms
69,640 KB
testcase_16 AC 290 ms
78,928 KB
testcase_17 AC 450 ms
102,092 KB
testcase_18 AC 50 ms
37,124 KB
testcase_19 AC 52 ms
37,044 KB
testcase_20 AC 51 ms
36,804 KB
testcase_21 AC 96 ms
41,232 KB
testcase_22 AC 80 ms
39,040 KB
testcase_23 AC 84 ms
39,676 KB
testcase_24 AC 1,971 ms
249,736 KB
testcase_25 AC 1,284 ms
238,868 KB
testcase_26 AC 1,434 ms
238,872 KB
testcase_27 AC 1,304 ms
238,956 KB
testcase_28 AC 922 ms
238,928 KB
testcase_29 AC 1,012 ms
241,320 KB
testcase_30 AC 51 ms
37,040 KB
testcase_31 AC 52 ms
37,424 KB
testcase_32 AC 78 ms
39,512 KB
testcase_33 AC 87 ms
40,740 KB
testcase_34 AC 102 ms
46,896 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 1,295 ms
240,764 KB
testcase_38 AC 1,317 ms
250,480 KB
testcase_39 AC 1,326 ms
240,820 KB
testcase_40 AC 1,438 ms
238,796 KB
testcase_41 AC 1,431 ms
238,996 KB
testcase_42 AC 1,338 ms
238,792 KB
testcase_43 AC 1,411 ms
238,728 KB
testcase_44 AC 1,438 ms
241,236 KB
testcase_45 AC 1,429 ms
238,832 KB
testcase_46 AC 986 ms
241,004 KB
testcase_47 AC 907 ms
241,092 KB
testcase_48 AC 1,000 ms
238,500 KB
testcase_49 AC 995 ms
238,776 KB
testcase_50 AC 1,056 ms
241,284 KB
testcase_51 AC 1,013 ms
238,428 KB
testcase_52 AC 1,242 ms
219,328 KB
testcase_53 AC 1,312 ms
238,676 KB
testcase_54 AC 515 ms
241,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp1;
    static int[][] dp2;
    static Pizza[] pizzas;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        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);
        dp1 = new int[n][k + 1];
        for (int[] arr : dp1) {
            Arrays.fill(arr, -1);
        }
        dp2 = new int[n][k + 1];
        for (int[] arr : dp2) {
            Arrays.fill(arr, -1);
        }
        System.out.println(dfw2(n - 1, k));
    }
    
    static int dfw2(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp2[idx][v] < 0) {
            dp2[idx][v] = Math.max(dfw2(idx - 1, v), dfw1(idx - 1, v - pizzas[idx].price) + pizzas[idx].value);
        }
        return dp2[idx][v];
    }
    
    static int dfw1(int idx, int v) {
        if (v < 0) {
            return Integer.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (dp1[idx][v] < 0) {
            dp1[idx][v] = Math.max(dfw1(idx - 1, v), dfw2(idx - 1, v) + pizzas[idx].value);
        }
        return dp1[idx][v];
    }
    
    static class Pizza implements Comparable<Pizza> {
        int price;
        int value;
        
        public Pizza(int price, int value) {
            this.price = price;
            this.value = value;
        }
        
        public int compareTo(Pizza another) {
            return price - another.price;
        }
    }
}

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