結果

問題 No.50 おもちゃ箱
ユーザー tcltktcltk
提出日時 2021-05-19 23:49:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 841 ms / 5,000 ms
コード長 1,038 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,216 KB
最終ジャッジ日時 2024-10-10 05:44:25
合計ジャッジ時間 16,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
87,296 KB
testcase_01 AC 841 ms
88,576 KB
testcase_02 AC 146 ms
86,784 KB
testcase_03 AC 146 ms
86,528 KB
testcase_04 AC 143 ms
86,784 KB
testcase_05 AC 727 ms
88,576 KB
testcase_06 AC 192 ms
88,448 KB
testcase_07 AC 142 ms
86,400 KB
testcase_08 AC 144 ms
86,400 KB
testcase_09 AC 144 ms
86,912 KB
testcase_10 AC 141 ms
86,784 KB
testcase_11 AC 142 ms
86,400 KB
testcase_12 AC 143 ms
86,912 KB
testcase_13 AC 142 ms
86,784 KB
testcase_14 AC 147 ms
86,912 KB
testcase_15 AC 145 ms
86,528 KB
testcase_16 AC 146 ms
86,656 KB
testcase_17 AC 467 ms
88,832 KB
testcase_18 AC 184 ms
88,576 KB
testcase_19 AC 592 ms
89,088 KB
testcase_20 AC 152 ms
88,960 KB
testcase_21 AC 194 ms
88,832 KB
testcase_22 AC 535 ms
88,832 KB
testcase_23 AC 171 ms
89,216 KB
testcase_24 AC 140 ms
87,040 KB
testcase_25 AC 141 ms
86,912 KB
testcase_26 AC 157 ms
88,576 KB
testcase_27 AC 201 ms
88,704 KB
testcase_28 AC 520 ms
88,704 KB
testcase_29 AC 531 ms
88,576 KB
testcase_30 AC 462 ms
88,704 KB
testcase_31 AC 142 ms
86,912 KB
testcase_32 AC 708 ms
89,216 KB
testcase_33 AC 549 ms
88,704 KB
testcase_34 AC 734 ms
89,088 KB
testcase_35 AC 563 ms
88,832 KB
testcase_36 AC 573 ms
88,832 KB
testcase_37 AC 543 ms
88,704 KB
testcase_38 AC 589 ms
89,088 KB
testcase_39 AC 740 ms
89,088 KB
testcase_40 AC 798 ms
88,448 KB
testcase_41 AC 668 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """9
# 10 18 19 12 8 12 1 1 4
# 1
# 1
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input())
    A = list(map(int, input().split()))
    M = int(input())
    B = list(map(int, input().split()))
    B.sort(reverse=True)

    ans = 100
    for pat in itertools.permutations(A):
        i = 0
        cap = B[0]
        ok = True
        for item in pat:
            if item <= cap:
                cap -= item
            else:
                i += 1
                if i >= M or B[i] < item:
                    ok = False
                    break
                cap = B[i] - item
        if ok:
            ans = min(ans, i+1)

    if ans == 100:
        print(-1)
    else:
        print(ans)

if __name__ == '__main__':
    main()
0