結果

問題 No.50 おもちゃ箱
ユーザー kou6839kou6839
提出日時 2014-12-19 16:33:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 407 ms / 5,000 ms
コード長 1,236 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 41,928 KB
最終ジャッジ日時 2024-06-25 20:45:45
合計ジャッジ時間 10,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,404 KB
testcase_01 AC 333 ms
41,560 KB
testcase_02 AC 127 ms
41,388 KB
testcase_03 AC 125 ms
41,552 KB
testcase_04 AC 128 ms
41,712 KB
testcase_05 AC 330 ms
41,476 KB
testcase_06 AC 137 ms
41,408 KB
testcase_07 AC 117 ms
40,952 KB
testcase_08 AC 125 ms
41,408 KB
testcase_09 AC 126 ms
41,648 KB
testcase_10 AC 120 ms
41,332 KB
testcase_11 AC 125 ms
41,260 KB
testcase_12 AC 112 ms
40,128 KB
testcase_13 AC 110 ms
40,284 KB
testcase_14 AC 125 ms
41,456 KB
testcase_15 AC 123 ms
41,332 KB
testcase_16 AC 126 ms
41,612 KB
testcase_17 AC 125 ms
41,540 KB
testcase_18 AC 125 ms
41,512 KB
testcase_19 AC 247 ms
41,776 KB
testcase_20 AC 127 ms
41,456 KB
testcase_21 AC 138 ms
41,536 KB
testcase_22 AC 138 ms
41,364 KB
testcase_23 AC 124 ms
41,656 KB
testcase_24 AC 124 ms
41,616 KB
testcase_25 AC 125 ms
41,372 KB
testcase_26 AC 149 ms
41,496 KB
testcase_27 AC 173 ms
41,536 KB
testcase_28 AC 160 ms
41,656 KB
testcase_29 AC 144 ms
41,432 KB
testcase_30 AC 126 ms
41,508 KB
testcase_31 AC 126 ms
41,476 KB
testcase_32 AC 174 ms
41,500 KB
testcase_33 AC 214 ms
41,928 KB
testcase_34 AC 295 ms
41,520 KB
testcase_35 AC 165 ms
41,484 KB
testcase_36 AC 275 ms
41,880 KB
testcase_37 AC 141 ms
41,604 KB
testcase_38 AC 141 ms
41,700 KB
testcase_39 AC 266 ms
41,428 KB
testcase_40 AC 407 ms
41,516 KB
testcase_41 AC 215 ms
41,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;
 
public class Main {
	static int dfs(int n,int[] omo,int[] hako,int[] use){
		if(n==((1<<omo.length)-1)){
			int ans=0;
			for(int i=0;i<use.length;i++){
				if(use[i]>0) ans++;
			}
			return ans;
		}
		int res=Integer.MAX_VALUE;
		for(int i=0;i<omo.length;i++){
			if((n&1<<i)!=0) continue;
			int doko=-1;
			for(int j=hako.length-1;j>=0;j--){
				if(omo[i]<=hako[j]){
					hako[j]-=omo[i];
					use[j]++;
					doko=j;
					break;
				}else{
					if(j==0) return 100000;
				}
			}
			n += 1<<i;
			res = Math.min(dfs(n,omo,hako,use),res);
			n-=1<<i;
			use[doko]--;
			hako[doko]+=omo[i];
		}
		return res;
	}
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n= sc.nextInt();
        int[] omo = new int[n];
        for(int i=0;i<n;i++){
        	omo[i]=sc.nextInt();
        }
        int m = sc.nextInt();
        int[] hako =new int[m];
        int[] use = new int[m];
        for(int i=0;i<m;i++){
        	hako[i]=sc.nextInt();
        }
        Arrays.sort(hako);
        int s=dfs(0,omo,hako,use);
        if(s==100000){
        	System.out.println(-1);
        	return;
        }
        System.out.println(s);
        
    }
}		
0