結果
問題 | No.50 おもちゃ箱 |
ユーザー | jp_ste |
提出日時 | 2016-05-14 11:15:23 |
言語 | Java21 (openjdk 21) |
結果 |
WA
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 3,167 bytes |
コンパイル時間 | 3,085 ms |
コンパイル使用メモリ | 91,820 KB |
実行使用メモリ | 78,980 KB |
最終ジャッジ日時 | 2024-10-06 19:23:18 |
合計ジャッジ時間 | 12,636 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 138 ms
41,416 KB |
testcase_01 | WA | - |
testcase_02 | AC | 151 ms
41,688 KB |
testcase_03 | AC | 136 ms
41,404 KB |
testcase_04 | AC | 132 ms
41,180 KB |
testcase_05 | AC | 137 ms
41,416 KB |
testcase_06 | AC | 154 ms
41,856 KB |
testcase_07 | AC | 127 ms
40,220 KB |
testcase_08 | AC | 126 ms
40,284 KB |
testcase_09 | AC | 127 ms
40,256 KB |
testcase_10 | AC | 135 ms
41,500 KB |
testcase_11 | AC | 140 ms
41,520 KB |
testcase_12 | AC | 140 ms
41,336 KB |
testcase_13 | AC | 142 ms
41,408 KB |
testcase_14 | AC | 143 ms
41,344 KB |
testcase_15 | AC | 134 ms
41,540 KB |
testcase_16 | AC | 143 ms
41,660 KB |
testcase_17 | AC | 186 ms
43,888 KB |
testcase_18 | AC | 196 ms
44,472 KB |
testcase_19 | WA | - |
testcase_20 | AC | 180 ms
41,856 KB |
testcase_21 | AC | 174 ms
42,304 KB |
testcase_22 | AC | 206 ms
45,480 KB |
testcase_23 | AC | 141 ms
41,544 KB |
testcase_24 | AC | 130 ms
41,032 KB |
testcase_25 | AC | 126 ms
40,880 KB |
testcase_26 | AC | 137 ms
41,472 KB |
testcase_27 | AC | 141 ms
41,668 KB |
testcase_28 | AC | 199 ms
44,480 KB |
testcase_29 | AC | 253 ms
48,208 KB |
testcase_30 | AC | 762 ms
63,684 KB |
testcase_31 | AC | 138 ms
41,564 KB |
testcase_32 | AC | 234 ms
47,732 KB |
testcase_33 | AC | 233 ms
47,256 KB |
testcase_34 | AC | 137 ms
41,488 KB |
testcase_35 | AC | 175 ms
43,176 KB |
testcase_36 | AC | 226 ms
47,452 KB |
testcase_37 | AC | 187 ms
42,572 KB |
testcase_38 | AC | 647 ms
60,760 KB |
testcase_39 | AC | 143 ms
41,520 KB |
testcase_40 | AC | 151 ms
41,600 KB |
testcase_41 | AC | 693 ms
78,980 KB |
ソースコード
import java.util.ArrayList; import java.util.Collections; import java.util.LinkedList; import java.util.Scanner; public class Main { final static Integer DEL_VALUE = new Integer(99); public static void main(String[] args) { try (Scanner scan = new Scanner(System.in)) { int n = Integer.parseInt(scan.next()); ArrayList<Integer> a = new ArrayList<>(); for(int i=0; i<n; i++) { a.add(Integer.parseInt(scan.next())); } int m = Integer.parseInt(scan.next()); ArrayList<Integer> b = new ArrayList<>(); for(int i=0; i<m; i++) { b.add(Integer.parseInt(scan.next())); } a.sort(Collections.reverseOrder()); b.sort(Collections.reverseOrder()); LinkedList< ArrayList<Integer> > checkList = new LinkedList<>(); LinkedList< ArrayList<Integer> > nextCheckList = new LinkedList<>(); checkList.add(a); for(int i=0; i<b.size(); i++) { while(!checkList.isEmpty()) { final ArrayList<Integer> nowList = checkList.poll(); ArrayList<String> p = getPermutationList(b.get(i), nowList); for(String flag : p) { ArrayList<Integer> tmpList = (ArrayList<Integer>)nowList.clone(); for(int j=0; j<tmpList.size(); j++) { if(flag.charAt(j) == '1') { tmpList.set(j, DEL_VALUE); } } while( tmpList.indexOf(DEL_VALUE) >= 0 ) { tmpList.remove(DEL_VALUE); } if(tmpList.size() == 0) { System.out.println(i+1); System.exit(0); } nextCheckList.add(tmpList); } } checkList = (LinkedList< ArrayList<Integer> >)nextCheckList.clone(); nextCheckList.clear(); } System.out.println(-1); } } static ArrayList<String> getPermutationList(final int BOX_SIZE, ArrayList<Integer> a) { ArrayList<String> pList = new ArrayList<>(); int n = (int)Math.pow(2, a.size()); for(int i=n-1; i>=0; i--) { String flag = Integer.toBinaryString(i); int len = (a.size()-flag.length()); for(int j=0; j<len; j++) flag = "0" + flag; int sum = 0; for(int j=0; j<a.size(); j++) { if(flag.charAt(j) == '1') { sum += (a.get(j)); if(sum > BOX_SIZE) break; } } if(sum <= BOX_SIZE) { pList.add(flag); if(pList.size() >= 5) break; } } return pList; } }