結果

問題 No.50 おもちゃ箱
ユーザー htensaihtensai
提出日時 2020-01-29 15:28:54
言語 Java21
(openjdk 21)
結果
AC  
実行時間 59 ms / 5,000 ms
コード長 1,933 bytes
コンパイル時間 3,433 ms
コンパイル使用メモリ 77,900 KB
実行使用メモリ 38,180 KB
最終ジャッジ日時 2024-09-16 01:01:53
合計ジャッジ時間 5,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,156 KB
testcase_01 AC 54 ms
37,784 KB
testcase_02 AC 52 ms
36,780 KB
testcase_03 AC 52 ms
37,020 KB
testcase_04 AC 52 ms
36,928 KB
testcase_05 AC 53 ms
37,976 KB
testcase_06 AC 52 ms
37,440 KB
testcase_07 AC 52 ms
37,160 KB
testcase_08 AC 52 ms
37,172 KB
testcase_09 AC 52 ms
37,300 KB
testcase_10 AC 52 ms
37,092 KB
testcase_11 AC 52 ms
37,144 KB
testcase_12 AC 52 ms
37,308 KB
testcase_13 AC 51 ms
37,028 KB
testcase_14 AC 52 ms
37,196 KB
testcase_15 AC 51 ms
37,028 KB
testcase_16 AC 51 ms
37,088 KB
testcase_17 AC 52 ms
37,740 KB
testcase_18 AC 51 ms
37,440 KB
testcase_19 AC 52 ms
37,664 KB
testcase_20 AC 50 ms
37,348 KB
testcase_21 AC 54 ms
37,276 KB
testcase_22 AC 53 ms
37,796 KB
testcase_23 AC 54 ms
37,204 KB
testcase_24 AC 52 ms
37,120 KB
testcase_25 AC 52 ms
37,028 KB
testcase_26 AC 52 ms
37,248 KB
testcase_27 AC 52 ms
37,184 KB
testcase_28 AC 53 ms
37,548 KB
testcase_29 AC 56 ms
37,940 KB
testcase_30 AC 56 ms
37,916 KB
testcase_31 AC 52 ms
37,028 KB
testcase_32 AC 53 ms
37,984 KB
testcase_33 AC 54 ms
38,180 KB
testcase_34 AC 59 ms
37,880 KB
testcase_35 AC 53 ms
37,692 KB
testcase_36 AC 53 ms
38,116 KB
testcase_37 AC 54 ms
37,796 KB
testcase_38 AC 54 ms
37,916 KB
testcase_39 AC 53 ms
37,888 KB
testcase_40 AC 53 ms
37,844 KB
testcase_41 AC 53 ms
37,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int n;
    static int[] toys;
    static int m;
    static int[] boxes;
    static final int MAX = 20;
    static int[][][] dp;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = Integer.parseInt(br.readLine());
        toys = new int[n];
        String[] first = br.readLine().split(" ", n);
        for (int i = 0; i < n; i++) {
            toys[i] = Integer.parseInt(first[i]);
        }
        m = Integer.parseInt(br.readLine());
        boxes = new int[m];
        String[] second = br.readLine().split(" ", m);
        for (int i = 0; i < m; i++) {
            boxes[i] = Integer.parseInt(second[i]);
        }
        Arrays.sort(boxes);
        dp = new int[m][MAX + 1][1 << n];
        int value = dfw(m - 1, boxes[m - 1], (1 << n) - 1) + 1;
        if (value > m) {
            System.out.println(-1);
        } else {
            System.out.println(value);
        }
    }
    
    static int dfw(int b, int size, int key) {
        if (b < 0) {
            return Integer.MAX_VALUE / 10;
        }
        if (key == 0) {
            return 0;
        }
        if (dp[b][size][key] != 0) {
            return dp[b][size][key];
        }
        int min = Integer.MAX_VALUE;
        int count = 0;
        for (int i = 0; i < n; i++) {
            int x = 1 << i;
            if ((x & key) == 0) {
                continue;
            }
            if (toys[i] > size) {
                continue;
            }
            count++;
            min = Math.min(min, dfw(b, size - toys[i], key ^ x));
        }
        if (count == 0) {
            if (b < 1) {
                return Integer.MAX_VALUE / 10;
            }
            min = dfw(b - 1, boxes[b - 1], key) + 1;
        }
        dp[b][size][key] = min;
        return min;
    }
}
0