結果

問題 No.50 おもちゃ箱
ユーザー GrenacheGrenache
提出日時 2016-07-03 10:57:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 318 ms / 5,000 ms
コード長 1,841 bytes
コンパイル時間 4,029 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 55,336 KB
最終ジャッジ日時 2024-06-25 21:21:59
合計ジャッジ時間 14,393 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
48,196 KB
testcase_01 AC 294 ms
54,468 KB
testcase_02 AC 147 ms
50,012 KB
testcase_03 AC 141 ms
50,376 KB
testcase_04 AC 139 ms
50,384 KB
testcase_05 AC 318 ms
55,328 KB
testcase_06 AC 211 ms
52,000 KB
testcase_07 AC 137 ms
50,080 KB
testcase_08 AC 140 ms
50,248 KB
testcase_09 AC 142 ms
50,460 KB
testcase_10 AC 141 ms
50,384 KB
testcase_11 AC 144 ms
50,508 KB
testcase_12 AC 141 ms
50,684 KB
testcase_13 AC 142 ms
50,216 KB
testcase_14 AC 147 ms
50,480 KB
testcase_15 AC 138 ms
50,484 KB
testcase_16 AC 145 ms
50,436 KB
testcase_17 AC 298 ms
54,860 KB
testcase_18 AC 210 ms
51,532 KB
testcase_19 AC 286 ms
54,988 KB
testcase_20 AC 154 ms
50,340 KB
testcase_21 AC 217 ms
51,984 KB
testcase_22 AC 292 ms
54,752 KB
testcase_23 AC 208 ms
51,384 KB
testcase_24 AC 139 ms
50,308 KB
testcase_25 AC 135 ms
50,640 KB
testcase_26 AC 152 ms
50,516 KB
testcase_27 AC 222 ms
52,288 KB
testcase_28 AC 292 ms
54,756 KB
testcase_29 AC 292 ms
55,112 KB
testcase_30 AC 291 ms
55,080 KB
testcase_31 AC 136 ms
50,768 KB
testcase_32 AC 288 ms
55,336 KB
testcase_33 AC 283 ms
55,304 KB
testcase_34 AC 299 ms
54,476 KB
testcase_35 AC 290 ms
54,608 KB
testcase_36 AC 290 ms
54,944 KB
testcase_37 AC 287 ms
54,640 KB
testcase_38 AC 283 ms
54,952 KB
testcase_39 AC 301 ms
54,568 KB
testcase_40 AC 283 ms
54,316 KB
testcase_41 AC 295 ms
54,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


public class Main_yukicoder50 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        Printer pr = new Printer(System.out);

        final int INF = Integer.MAX_VALUE;

        int n = sc.nextInt();

        int[] a = new int[n];
        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        }

        int m = sc.nextInt();

        List<Integer> b = new ArrayList<>();
        for (int i = 0; i < m; i++) {
        	b.add(sc.nextInt());
        }
        Collections.sort(b);

        Deque<List<Integer>> st = new ArrayDeque<>();
        Deque<Integer> stn = new ArrayDeque<>();
        st.add(new ArrayList<Integer>());
        stn.add(0);

        int min = INF;
        while (!st.isEmpty()) {
        	List<Integer> e = st.pop();
        	int en = stn.pop();

        	if (en == n) {
        		Collections.sort(e);

        		boolean flag = true;
        		for (int i = e.size() - 1, j = b.size() - 1; i >= 0; i--, j--) {
        			if (j < 0 || b.get(j) < e.get(i)) {
        				flag = false;
        				break;
        			}
        		}
        		if (flag) {
        			min = Math.min(min, e.size());
        		}
        	} else {
        		for (int i = 0; i < e.size(); i++) {
        			List<Integer> tmp = new ArrayList<>(e);
        			tmp.set(i, tmp.get(i) + a[en]);
        			st.push(tmp);
        			stn.push(en + 1);
        		}
    			List<Integer> tmp = new ArrayList<>(e);
    			tmp.add(a[en]);
    			st.push(tmp);
    			stn.push(en + 1);
        	}
        }

        if (min == INF) {
        	pr.println(-1);
        } else {
        	pr.println(min);
        }

        pr.close();
        sc.close();
    }

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0