結果

問題 No.50 おもちゃ箱
ユーザー リチウムリチウム
提出日時 2014-10-27 01:09:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,328 ms / 5,000 ms
コード長 1,461 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 79,068 KB
実行使用メモリ 50,436 KB
最終ジャッジ日時 2024-06-25 20:54:04
合計ジャッジ時間 49,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,892 KB
testcase_01 AC 2,183 ms
50,336 KB
testcase_02 AC 142 ms
41,972 KB
testcase_03 AC 134 ms
41,240 KB
testcase_04 AC 131 ms
41,624 KB
testcase_05 AC 1,848 ms
49,704 KB
testcase_06 AC 435 ms
46,960 KB
testcase_07 AC 138 ms
41,620 KB
testcase_08 AC 137 ms
41,664 KB
testcase_09 AC 135 ms
41,404 KB
testcase_10 AC 134 ms
41,364 KB
testcase_11 AC 141 ms
41,660 KB
testcase_12 AC 135 ms
41,324 KB
testcase_13 AC 121 ms
40,348 KB
testcase_14 AC 139 ms
41,628 KB
testcase_15 AC 121 ms
40,400 KB
testcase_16 AC 140 ms
41,772 KB
testcase_17 AC 2,197 ms
50,160 KB
testcase_18 AC 424 ms
47,032 KB
testcase_19 AC 2,289 ms
49,860 KB
testcase_20 AC 170 ms
43,116 KB
testcase_21 AC 407 ms
47,040 KB
testcase_22 AC 2,253 ms
47,888 KB
testcase_23 AC 406 ms
47,112 KB
testcase_24 AC 137 ms
41,804 KB
testcase_25 AC 137 ms
41,404 KB
testcase_26 AC 173 ms
43,072 KB
testcase_27 AC 408 ms
46,984 KB
testcase_28 AC 2,215 ms
50,376 KB
testcase_29 AC 2,199 ms
49,748 KB
testcase_30 AC 2,328 ms
49,468 KB
testcase_31 AC 120 ms
40,388 KB
testcase_32 AC 2,221 ms
50,000 KB
testcase_33 AC 2,172 ms
50,372 KB
testcase_34 AC 2,096 ms
49,380 KB
testcase_35 AC 2,239 ms
50,436 KB
testcase_36 AC 2,100 ms
50,132 KB
testcase_37 AC 2,317 ms
49,988 KB
testcase_38 AC 2,267 ms
49,412 KB
testcase_39 AC 2,179 ms
49,900 KB
testcase_40 AC 2,026 ms
49,100 KB
testcase_41 AC 2,108 ms
50,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();
		int toy[]=new int[n];
		for(int i=0;i<n;i++){
			toy[i]=sc.nextInt();
		}
		int m=sc.nextInt();
		int box[]=new int[m];
		for(int i=0;i<m;i++){
			box[i]=sc.nextInt();
		}
		Arrays.sort(box);
		int x=1;
		int y=n;
		while(y>1){
			x*=y;
			y--;
		}
		int ans=100;
		for(int i=0;i<x;i++){
			int p[]=permutation(toy,i,x);
			boolean used[]=new boolean[m];
			int b[]=new int[m];
			for(int j=0;j<m;j++){
				b[j]=box[j];
			}
			int nokori=n;
			for(int j=0;j<n;j++){
				for(int k=m-1;k>=0;k--){
					if(b[k]>=p[j]){
						b[k]-=p[j];
						used[k]=true;
						nokori--;
						break;
					}
				}
		}
			int ak=0;
			for(int j=0;j<m;j++){
				if(b[j]!=box[j])ak++;
			}
			if(nokori==0)ans=Math.min(ans,ak);
		}
		if(ans==100)System.out.println(-1);
		else System.out.println(ans);
	}
	
	static int[] permutation(int[] base, int x,int k) {
		int n = base.length;
		int ans[] = new int[n];
		if (n == 1)
			return base;
		else {
			ArrayList<Integer> B = new ArrayList<Integer>();
			for (int i = 0; i < n; i++) {
				B.add(base[i]);
			}
			k /= n;
			int N = n - 1;
			for (int i = 0; i < n - 1; i++) {
				ans[i] = B.get(x / k);
				B.remove(x / k);
				x %= k;
				k /= N;
				N--;
			}
			ans[n - 1] = B.get(0);
		}
		return ans;
	}
}
0