結果

問題 No.1858 Gorgeous Knapsack
ユーザー tentententen
提出日時 2023-03-28 09:48:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 2,745 bytes
コンパイル時間 4,636 ms
コンパイル使用メモリ 96,288 KB
実行使用メモリ 256,264 KB
最終ジャッジ日時 2023-10-20 05:22:42
合計ジャッジ時間 16,177 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
53,556 KB
testcase_01 AC 55 ms
53,564 KB
testcase_02 AC 55 ms
53,560 KB
testcase_03 AC 57 ms
53,564 KB
testcase_04 AC 253 ms
90,464 KB
testcase_05 AC 125 ms
64,536 KB
testcase_06 AC 302 ms
115,200 KB
testcase_07 AC 241 ms
87,332 KB
testcase_08 AC 395 ms
131,956 KB
testcase_09 AC 590 ms
185,844 KB
testcase_10 AC 331 ms
89,852 KB
testcase_11 AC 411 ms
116,284 KB
testcase_12 AC 580 ms
146,524 KB
testcase_13 AC 165 ms
61,032 KB
testcase_14 AC 55 ms
53,572 KB
testcase_15 AC 54 ms
53,564 KB
testcase_16 AC 55 ms
53,576 KB
testcase_17 AC 55 ms
52,480 KB
testcase_18 AC 54 ms
53,580 KB
testcase_19 AC 54 ms
53,564 KB
testcase_20 AC 54 ms
53,560 KB
testcase_21 AC 54 ms
53,568 KB
testcase_22 AC 54 ms
53,560 KB
testcase_23 AC 53 ms
53,592 KB
testcase_24 AC 145 ms
67,824 KB
testcase_25 AC 482 ms
136,484 KB
testcase_26 AC 375 ms
131,876 KB
testcase_27 AC 365 ms
132,224 KB
testcase_28 AC 300 ms
114,792 KB
testcase_29 AC 124 ms
55,716 KB
testcase_30 AC 135 ms
55,860 KB
testcase_31 AC 130 ms
55,628 KB
testcase_32 AC 121 ms
55,640 KB
testcase_33 AC 143 ms
56,144 KB
testcase_34 AC 934 ms
253,224 KB
testcase_35 AC 327 ms
252,664 KB
testcase_36 AC 973 ms
256,264 KB
testcase_37 AC 55 ms
53,560 KB
testcase_38 AC 119 ms
55,820 KB
testcase_39 AC 55 ms
53,568 KB
testcase_40 AC 324 ms
252,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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