結果

問題 No.50 おもちゃ箱
ユーザー yun_appyun_app
提出日時 2016-05-13 16:12:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 2,192 bytes
コンパイル時間 3,236 ms
コンパイル使用メモリ 90,840 KB
実行使用メモリ 50,832 KB
最終ジャッジ日時 2024-10-05 14:19:16
合計ジャッジ時間 5,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,348 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 56 ms
50,264 KB
testcase_04 AC 54 ms
50,672 KB
testcase_05 AC 55 ms
50,528 KB
testcase_06 AC 56 ms
50,692 KB
testcase_07 AC 56 ms
50,688 KB
testcase_08 AC 57 ms
50,764 KB
testcase_09 AC 57 ms
50,764 KB
testcase_10 AC 60 ms
50,460 KB
testcase_11 WA -
testcase_12 AC 55 ms
50,584 KB
testcase_13 AC 55 ms
50,496 KB
testcase_14 AC 55 ms
50,576 KB
testcase_15 AC 57 ms
50,460 KB
testcase_16 WA -
testcase_17 AC 55 ms
50,600 KB
testcase_18 AC 56 ms
50,512 KB
testcase_19 AC 60 ms
50,444 KB
testcase_20 WA -
testcase_21 AC 55 ms
50,676 KB
testcase_22 AC 55 ms
50,356 KB
testcase_23 AC 57 ms
50,608 KB
testcase_24 AC 55 ms
50,560 KB
testcase_25 AC 55 ms
50,252 KB
testcase_26 AC 58 ms
50,748 KB
testcase_27 AC 58 ms
50,740 KB
testcase_28 AC 57 ms
50,732 KB
testcase_29 AC 56 ms
50,360 KB
testcase_30 AC 59 ms
50,452 KB
testcase_31 WA -
testcase_32 AC 55 ms
50,804 KB
testcase_33 AC 55 ms
50,636 KB
testcase_34 AC 55 ms
50,256 KB
testcase_35 AC 55 ms
50,328 KB
testcase_36 AC 54 ms
50,612 KB
testcase_37 AC 55 ms
50,708 KB
testcase_38 AC 57 ms
50,260 KB
testcase_39 AC 54 ms
50,248 KB
testcase_40 AC 56 ms
50,540 KB
testcase_41 AC 56 ms
50,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

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

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
    public static void main (String[] args) throws java.lang.Exception
    {
        // your code goes here
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        ArrayList<Integer> toy = new ArrayList<Integer>();
        int toy_sum = 0;
        for(String st:br.readLine().split(" ")){
            int t = Integer.parseInt(st);
            toy.add(t);
            toy_sum += t;
        }
        Collections.sort(toy,(a,b)->{return b-a;});
        int m = Integer.parseInt(br.readLine());
        ArrayList<Integer> box = new ArrayList<Integer>();
        for(String st:br.readLine().split(" ")){
            box.add(Integer.parseInt(st));
        }
        Collections.sort(box,(a,b)->{return b-a;});
        int min = 1;
        int max = m;
        int ans = -1;
        while(max>=min){
            int ave = (min+max)/2;
            if(check(new ArrayList<Integer>(box.subList(0,ave)),new ArrayList<Integer>(toy),toy_sum)){
                ans = ave;
                max = ave-1;
            }else{
                min = ave+1;
            }
        }
        System.out.println(ans);
        
    }
    public static boolean check(ArrayList<Integer> box,ArrayList<Integer> toy,int toy_sum){
        for(int b:box){
            toy_sum-=b;
        }
        if(toy_sum>0){
            return false;
        }
        for(int i=0;i<toy.size();i++){
            int idx = box.indexOf(toy.get(i));
            if(idx >= 0){
                toy.remove(i);
                i--;
                box.set(idx,0);
            }
        }
        Collections.sort(box,(a,b)->{return b-a;});
        for(int i=0;i<toy.size();i++){
            int bo = box.get(0);
            int n = toy.get(i);
            if(bo>=n){
                box.set(0,bo-n);
                Collections.sort(box,(a,b)->{return b-a;});
            }else{
                return false;
            }
        }
        return true;
    }

}
0