結果

問題 No.1858 Gorgeous Knapsack
ユーザー tentententen
提出日時 2023-12-07 09:16:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,725 bytes
コンパイル時間 2,649 ms
コンパイル使用メモリ 85,180 KB
実行使用メモリ 190,080 KB
最終ジャッジ日時 2023-12-07 09:16:14
合計ジャッジ時間 13,473 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
53,992 KB
testcase_01 AC 54 ms
53,988 KB
testcase_02 AC 55 ms
53,976 KB
testcase_03 AC 54 ms
53,980 KB
testcase_04 AC 215 ms
80,292 KB
testcase_05 AC 119 ms
61,036 KB
testcase_06 AC 259 ms
80,596 KB
testcase_07 AC 224 ms
68,628 KB
testcase_08 AC 331 ms
87,956 KB
testcase_09 AC 594 ms
133,292 KB
testcase_10 AC 326 ms
72,624 KB
testcase_11 AC 395 ms
90,940 KB
testcase_12 AC 504 ms
117,088 KB
testcase_13 AC 187 ms
62,188 KB
testcase_14 AC 55 ms
53,980 KB
testcase_15 AC 54 ms
53,984 KB
testcase_16 AC 54 ms
53,988 KB
testcase_17 AC 54 ms
53,988 KB
testcase_18 AC 54 ms
53,984 KB
testcase_19 AC 53 ms
53,988 KB
testcase_20 AC 53 ms
53,992 KB
testcase_21 AC 53 ms
53,984 KB
testcase_22 AC 53 ms
53,988 KB
testcase_23 AC 54 ms
53,984 KB
testcase_24 AC 134 ms
65,336 KB
testcase_25 AC 371 ms
113,408 KB
testcase_26 AC 301 ms
87,944 KB
testcase_27 AC 292 ms
87,896 KB
testcase_28 AC 273 ms
79,592 KB
testcase_29 AC 123 ms
56,296 KB
testcase_30 AC 127 ms
56,440 KB
testcase_31 AC 129 ms
56,408 KB
testcase_32 AC 110 ms
56,052 KB
testcase_33 AC 134 ms
56,552 KB
testcase_34 WA -
testcase_35 AC 240 ms
186,248 KB
testcase_36 AC 747 ms
189,744 KB
testcase_37 AC 53 ms
53,988 KB
testcase_38 AC 121 ms
55,904 KB
testcase_39 AC 53 ms
53,976 KB
testcase_40 AC 250 ms
186,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static Jewel[] jewels;
    static int[][] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        jewels = new Jewel[n];
        for (int i = 0; i < n; i++) {
            jewels[i] = new Jewel(sc.nextInt(), sc.nextInt());
        }
        Arrays.sort(jewels);
        dp = new int[n][m + 1];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        long ans = 0;
        for (int i = n - 1; i >= 0; i--) {
            long base = jewels[i].value;
            ans = Math.max(ans, base * (base + dfw(i - 1, m - jewels[i].weight)));
        }
        System.out.println(ans);
    }
    
    static int dfw(int idx, int v) {
        if (v < 0) {
            return Integer.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 - jewels[idx].weight) + jewels[idx].value);
        }
        return dp[idx][v];
    }
    
    static class Jewel implements Comparable<Jewel> {
        int value;
        int weight;
        
        public Jewel(int value, int weight) {
            this.value = value;
            this.weight = weight;
        }
        
        public int compareTo(Jewel another) {
            return another.value - value;
        }
    }
}
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