結果

問題 No.50 おもちゃ箱
ユーザー dangodango
提出日時 2023-07-09 16:22:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,056 ms / 5,000 ms
コード長 733 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 76,668 KB
最終ジャッジ日時 2024-07-23 13:32:52
合計ジャッジ時間 8,776 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,856 KB
testcase_01 AC 175 ms
76,048 KB
testcase_02 AC 46 ms
59,496 KB
testcase_03 AC 40 ms
52,200 KB
testcase_04 AC 40 ms
53,356 KB
testcase_05 AC 39 ms
52,892 KB
testcase_06 AC 197 ms
76,488 KB
testcase_07 AC 39 ms
52,556 KB
testcase_08 AC 39 ms
52,332 KB
testcase_09 AC 39 ms
53,080 KB
testcase_10 AC 38 ms
52,860 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 39 ms
52,644 KB
testcase_13 AC 38 ms
52,132 KB
testcase_14 AC 54 ms
64,176 KB
testcase_15 AC 39 ms
54,156 KB
testcase_16 AC 50 ms
62,112 KB
testcase_17 AC 532 ms
76,040 KB
testcase_18 AC 121 ms
76,100 KB
testcase_19 AC 271 ms
76,668 KB
testcase_20 AC 82 ms
76,436 KB
testcase_21 AC 87 ms
76,280 KB
testcase_22 AC 573 ms
76,376 KB
testcase_23 AC 102 ms
76,340 KB
testcase_24 AC 39 ms
53,212 KB
testcase_25 AC 39 ms
52,588 KB
testcase_26 AC 69 ms
74,284 KB
testcase_27 AC 56 ms
64,716 KB
testcase_28 AC 164 ms
76,348 KB
testcase_29 AC 142 ms
75,980 KB
testcase_30 AC 1,056 ms
76,524 KB
testcase_31 AC 40 ms
53,276 KB
testcase_32 AC 237 ms
76,436 KB
testcase_33 AC 655 ms
76,352 KB
testcase_34 AC 69 ms
75,032 KB
testcase_35 AC 386 ms
76,560 KB
testcase_36 AC 220 ms
76,024 KB
testcase_37 AC 184 ms
76,344 KB
testcase_38 AC 118 ms
76,140 KB
testcase_39 AC 151 ms
76,264 KB
testcase_40 AC 593 ms
76,080 KB
testcase_41 AC 38 ms
52,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def next_permutation(arr):
    i = len(arr) - 2
    while i >= 0 and arr[i] >= arr[i + 1]:
        i -= 1
    if i == -1:
        return False
    j = len(arr) - 1
    while arr[j] <= arr[i]:
        j -= 1
    arr[i], arr[j] = arr[j], arr[i]
    arr[i + 1:] = reversed(arr[i + 1:])
    return True
from itertools import permutations
n = int(input())
A = sorted(map(int, input().split()))
m = int(input()) + 1
B = list(reversed(sorted(map(int, input().split()))))
a = m
while True:
    T, i, j = B[:], 0, 0
    while i < n and j < m - 1:
        if T[j] >= A[i]:
            T[j] -= A[i]
            i += 1
        else:
            j += 1
    a = min(a, j + 1)
    if not next_permutation(A):
        break
print(a if a < m else -1)
0