結果

問題 No.50 おもちゃ箱
ユーザー tentententen
提出日時 2020-11-30 09:47:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,171 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 79,928 KB
実行使用メモリ 56,176 KB
最終ジャッジ日時 2024-09-13 02:18:23
合計ジャッジ時間 9,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 134 ms
54,136 KB
testcase_04 AC 134 ms
54,148 KB
testcase_05 AC 132 ms
54,092 KB
testcase_06 AC 133 ms
54,328 KB
testcase_07 AC 136 ms
54,192 KB
testcase_08 AC 138 ms
54,320 KB
testcase_09 AC 136 ms
54,100 KB
testcase_10 AC 133 ms
54,148 KB
testcase_11 WA -
testcase_12 AC 134 ms
53,892 KB
testcase_13 AC 135 ms
54,120 KB
testcase_14 AC 135 ms
54,292 KB
testcase_15 AC 136 ms
54,128 KB
testcase_16 AC 136 ms
54,260 KB
testcase_17 AC 135 ms
53,984 KB
testcase_18 AC 140 ms
54,048 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 136 ms
54,172 KB
testcase_22 AC 134 ms
54,280 KB
testcase_23 AC 134 ms
54,096 KB
testcase_24 AC 134 ms
54,124 KB
testcase_25 AC 132 ms
54,272 KB
testcase_26 AC 136 ms
54,048 KB
testcase_27 AC 137 ms
53,764 KB
testcase_28 AC 138 ms
56,176 KB
testcase_29 AC 134 ms
54,188 KB
testcase_30 AC 132 ms
54,404 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 135 ms
54,328 KB
testcase_34 AC 134 ms
53,964 KB
testcase_35 WA -
testcase_36 AC 134 ms
54,156 KB
testcase_37 AC 134 ms
54,336 KB
testcase_38 AC 139 ms
54,076 KB
testcase_39 AC 135 ms
54,400 KB
testcase_40 AC 134 ms
54,552 KB
testcase_41 AC 136 ms
54,200 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[] toys = new int[n];
		for (int i = 0; i < n; i++) {
		    toys[i] = sc.nextInt();
		}
		Arrays.sort(toys);
		int m = sc.nextInt();
		int[] boxes = new int[m];
		for (int i = 0; i < m; i++) {
		    boxes[i] = sc.nextInt();
		}
		Arrays.sort(boxes);
		int right = m - 1;
		TreeMap<Integer, Integer> using = new TreeMap<>();
		using.put(Integer.MAX_VALUE, 0);
		for (int i = n - 1; i >= 0; i--) {
		    int key = using.ceilingKey(toys[i]);
		    if (key == Integer.MAX_VALUE) {
		        if (right < 0 || boxes[right] < toys[i]) {
		            System.out.println(-1);
		            return;
		        }
		        using.put(boxes[right] - toys[i], using.getOrDefault(boxes[right] - toys[i], 0) + 1);
		        right--;
		    } else {
		        if (using.get(key) == 1) {
		            using.remove(key);
		        } else {
		            using.put(key, using.get(key) - 1);
		        }
	            using.put(key - toys[i], using.getOrDefault(key - toys[i], 0) + 1);
		    }
		}
		System.out.println(m - right - 1);
	}
}

0