結果

問題 No.2167 Fibonacci Knapsack
ユーザー tentententen
提出日時 2022-12-26 15:21:12
言語 Java21
(openjdk 21)
結果
MLE  
実行時間 -
コード長 2,450 bytes
コンパイル時間 2,873 ms
コンパイル使用メモリ 84,732 KB
実行使用メモリ 761,548 KB
最終ジャッジ日時 2024-11-21 00:16:47
合計ジャッジ時間 91,262 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
56,996 KB
testcase_01 MLE -
testcase_02 AC 93 ms
61,272 KB
testcase_03 MLE -
testcase_04 TLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 MLE -
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 MLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long[] weights;
    static long[] values;
    static ArrayList<HashMap<Long, Long>> dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int t = sc.nextInt();
        StringBuilder sb = new StringBuilder();
        while (t-- > 0) {
            int n = sc.nextInt();
            long w = sc.nextLong();
            weights = new long[n];
            values = new long[n];
            dp = new ArrayList<>();
            for (int i = 0; i < n; i++) {
                weights[i] = sc.nextLong();
                dp.add(new HashMap<>());
            }
            values[0] = 1;
            if (n > 1) {
                values[1] = 2;
            }
            for (int i = 2; i < n; i++) {
                values[i] = values[i - 1] + values[i - 2];
            }
            sb.append(dfw(n - 1, w)).append("\n");
        }
        System.out.print(sb);
    }
    
    static long dfw(int idx, long w) {
        if (w < 0) {
            return Long.MIN_VALUE;
        }
        if (idx < 0) {
            return 0;
        }
        if (!dp.get(idx).containsKey(w)) {
            dp.get(idx).put(w, Math.max(dfw(idx - 1, w), dfw(idx - 1, w - weights[idx]) + values[idx]));
        }
        return dp.get(idx).get(w);
    }
    
}
class Utilities {
    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