結果

問題 No.50 おもちゃ箱
ユーザー 👑 rin204rin204
提出日時 2022-09-27 22:19:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 1,017 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,320 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-06-02 01:16:51
合計ジャッジ時間 3,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,324 KB
testcase_01 AC 77 ms
76,476 KB
testcase_02 AC 34 ms
52,868 KB
testcase_03 AC 34 ms
52,204 KB
testcase_04 AC 34 ms
53,564 KB
testcase_05 AC 60 ms
73,804 KB
testcase_06 AC 59 ms
68,784 KB
testcase_07 AC 36 ms
52,756 KB
testcase_08 AC 36 ms
52,832 KB
testcase_09 AC 35 ms
53,568 KB
testcase_10 AC 36 ms
52,700 KB
testcase_11 AC 36 ms
52,748 KB
testcase_12 AC 37 ms
52,288 KB
testcase_13 AC 35 ms
52,828 KB
testcase_14 AC 35 ms
52,560 KB
testcase_15 AC 35 ms
52,132 KB
testcase_16 AC 35 ms
53,300 KB
testcase_17 AC 42 ms
61,252 KB
testcase_18 AC 40 ms
59,956 KB
testcase_19 AC 87 ms
76,332 KB
testcase_20 AC 36 ms
53,636 KB
testcase_21 AC 86 ms
76,036 KB
testcase_22 AC 72 ms
76,392 KB
testcase_23 AC 38 ms
60,444 KB
testcase_24 AC 34 ms
52,464 KB
testcase_25 AC 34 ms
52,612 KB
testcase_26 AC 46 ms
63,576 KB
testcase_27 AC 95 ms
76,488 KB
testcase_28 AC 125 ms
76,880 KB
testcase_29 AC 95 ms
76,392 KB
testcase_30 AC 42 ms
60,808 KB
testcase_31 AC 33 ms
52,440 KB
testcase_32 AC 76 ms
76,288 KB
testcase_33 AC 48 ms
64,592 KB
testcase_34 AC 61 ms
73,908 KB
testcase_35 AC 87 ms
76,368 KB
testcase_36 AC 82 ms
76,360 KB
testcase_37 AC 60 ms
70,000 KB
testcase_38 AC 79 ms
76,588 KB
testcase_39 AC 111 ms
76,428 KB
testcase_40 AC 61 ms
69,848 KB
testcase_41 AC 98 ms
76,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
m = int(input())
B = list(map(int, input().split()))
A.sort(reverse=True)
B.sort()
ma = B[-1]
C = []
ans = 1 << 30

def ok(C):
    D = C[:]
    D.sort()
    p = 0
    for d in D:
        while p < m and B[p] < d:
            p += 1
        if p == m:
            return False
        p += 1
    return True

def dfs(bit):
    global ans
    if bit == 0:
        if ok(C):
            ans = min(ans, len(C))
        return

    if len(C) >= ans:
        return

    lst = []
    for i in range(n):
        if bit >> i & 1:
            lst.append(i)
    
    a = lst[0]
    le = len(lst) - 1
    for bit2 in range(1 << le):
        tot = A[a]
        dbit = 1 << a
        for j in range(le):
            if bit2 >> j & 1:
                dbit ^= 1 << lst[j + 1]
                tot += A[lst[j + 1]]        
        if tot <= ma:
            C.append(tot)
            dfs(bit ^ dbit)
            C.pop()


dfs((1 << n) - 1)
if ans == 1 << 30:
    ans = -1
print(ans)
0