結果

問題 No.50 おもちゃ箱
ユーザー tentententen
提出日時 2023-01-26 11:39:58
言語 Java19
(openjdk 21)
結果
AC  
実行時間 163 ms / 5,000 ms
コード長 2,997 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 92,388 KB
実行使用メモリ 53,624 KB
最終ジャッジ日時 2023-09-09 14:27:20
合計ジャッジ時間 7,816 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,264 KB
testcase_01 AC 73 ms
51,700 KB
testcase_02 AC 46 ms
50,268 KB
testcase_03 AC 43 ms
49,676 KB
testcase_04 AC 43 ms
49,324 KB
testcase_05 AC 163 ms
53,144 KB
testcase_06 AC 57 ms
51,952 KB
testcase_07 AC 43 ms
49,692 KB
testcase_08 AC 43 ms
47,340 KB
testcase_09 AC 43 ms
49,488 KB
testcase_10 AC 42 ms
49,444 KB
testcase_11 AC 43 ms
49,400 KB
testcase_12 AC 42 ms
47,776 KB
testcase_13 AC 42 ms
49,652 KB
testcase_14 AC 46 ms
50,480 KB
testcase_15 AC 43 ms
49,412 KB
testcase_16 AC 45 ms
50,208 KB
testcase_17 AC 68 ms
52,088 KB
testcase_18 AC 46 ms
50,112 KB
testcase_19 AC 70 ms
52,640 KB
testcase_20 AC 45 ms
50,352 KB
testcase_21 AC 57 ms
51,972 KB
testcase_22 AC 63 ms
51,480 KB
testcase_23 AC 43 ms
49,292 KB
testcase_24 AC 42 ms
49,312 KB
testcase_25 AC 42 ms
49,936 KB
testcase_26 AC 45 ms
50,284 KB
testcase_27 AC 71 ms
52,028 KB
testcase_28 AC 62 ms
52,264 KB
testcase_29 AC 62 ms
52,156 KB
testcase_30 AC 68 ms
52,240 KB
testcase_31 AC 43 ms
49,308 KB
testcase_32 AC 61 ms
51,640 KB
testcase_33 AC 61 ms
51,532 KB
testcase_34 AC 89 ms
53,624 KB
testcase_35 AC 72 ms
52,096 KB
testcase_36 AC 59 ms
52,028 KB
testcase_37 AC 62 ms
52,120 KB
testcase_38 AC 69 ms
52,248 KB
testcase_39 AC 79 ms
52,148 KB
testcase_40 AC 116 ms
53,496 KB
testcase_41 AC 77 ms
52,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[][] dp;
    static final int MOD = 1000000009;
    static ArrayList<ArrayList<Integer>> enables = new ArrayList<>();
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] toys = new int[n];
        for (int i = 0; i < n; i++) {
            toys[i] = sc.nextInt();
        }
        int[] weights = new int[1 << n];
        for (int i = 1; i < (1 << n); i++) {
            for (int j = 0; j < n; j++) {
                if ((i & (1 << j)) > 0) {
                    weights[i] += toys[j];
                }
            }
        }
        int m = sc.nextInt();
        for (int i = 0; i < m; i++) {
            int x = sc.nextInt();
            enables.add(new ArrayList<>());
            for (int j = 1; j < weights.length; j++) {
                if (weights[j] <= x) {
                    enables.get(i).add(j);
                }
            }
        }
        dp = new int[m][1 << n];
        for (int[] arr : dp) {
            Arrays.fill(arr, -1);
        }
        int ans = dfw(m - 1, (1 << n) - 1);
        if (ans >= Integer.MAX_VALUE / 2) {
            System.out.println(-1);
        } else {
            System.out.println(ans);
        }
    }
    
    static int dfw(int idx, int v) {
        if (v == 0) {
            return 0;
        }
        if (idx < 0) {
            return Integer.MAX_VALUE / 2;
        }
        if (dp[idx][v] < 0) {
            dp[idx][v] = dfw(idx - 1, v);
            for (int x : enables.get(idx)) {
                dp[idx][v] = Math.min(dp[idx][v], dfw(idx - 1, v ^ (v & x)) + 1);
            }
        }
        return dp[idx][v];
    }
}

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