結果

問題 No.50 おもちゃ箱
ユーザー lloyzlloyz
提出日時 2023-10-14 22:54:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 64,896 KB
最終ジャッジ日時 2024-09-16 16:28:58
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,792 KB
testcase_01 AC 84 ms
64,640 KB
testcase_02 AC 44 ms
60,800 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 62 ms
63,360 KB
testcase_06 AC 60 ms
64,640 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 35 ms
51,840 KB
testcase_10 AC 35 ms
51,968 KB
testcase_11 AC 42 ms
59,392 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 46 ms
61,856 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 45 ms
61,184 KB
testcase_17 AC 93 ms
64,512 KB
testcase_18 AC 64 ms
64,512 KB
testcase_19 AC 89 ms
64,384 KB
testcase_20 AC 47 ms
62,680 KB
testcase_21 AC 60 ms
64,444 KB
testcase_22 AC 91 ms
64,384 KB
testcase_23 AC 48 ms
61,824 KB
testcase_24 AC 37 ms
51,968 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 AC 48 ms
61,696 KB
testcase_27 AC 58 ms
64,384 KB
testcase_28 AC 98 ms
64,512 KB
testcase_29 AC 120 ms
64,800 KB
testcase_30 AC 119 ms
64,512 KB
testcase_31 AC 36 ms
52,340 KB
testcase_32 AC 96 ms
64,512 KB
testcase_33 AC 98 ms
64,512 KB
testcase_34 AC 74 ms
64,128 KB
testcase_35 AC 94 ms
64,384 KB
testcase_36 AC 101 ms
64,384 KB
testcase_37 AC 93 ms
64,128 KB
testcase_38 AC 117 ms
64,804 KB
testcase_39 AC 78 ms
64,256 KB
testcase_40 AC 83 ms
64,256 KB
testcase_41 AC 115 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
m = int(input())
B = list(map(int, input().split()))

B.sort(reverse=True)
V = [0 for _ in range(1 << n)]
for bit in range(1 << n):
    for i in range(n):
        if (bit >> i) & 1:
            V[bit] += A[i]
DP = [[False for _ in range(1 << n)] for _ in range(m + 1)]
DP[0][0] = True
for i in range(m):
    for bit1 in range(1 << n):
        for bit2 in range(1 << n):
            if bit1 & bit2 == 0 and DP[i][bit1] and V[bit2] <= B[i]:
                DP[i + 1][bit1 | bit2] = True
    if DP[i + 1][-1]:
        print(i + 1)
        exit()
print(-1)
0