結果

問題 No.50 おもちゃ箱
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-01 00:47:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 655 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 68,288 KB
最終ジャッジ日時 2024-07-18 05:35:48
合計ジャッジ時間 3,506 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
61,424 KB
testcase_01 AC 51 ms
65,844 KB
testcase_02 AC 40 ms
60,308 KB
testcase_03 AC 34 ms
53,040 KB
testcase_04 AC 34 ms
53,572 KB
testcase_05 AC 85 ms
66,028 KB
testcase_06 AC 51 ms
66,952 KB
testcase_07 AC 35 ms
53,348 KB
testcase_08 AC 32 ms
53,348 KB
testcase_09 AC 34 ms
53,368 KB
testcase_10 AC 32 ms
52,888 KB
testcase_11 AC 34 ms
59,532 KB
testcase_12 AC 32 ms
52,500 KB
testcase_13 AC 34 ms
52,948 KB
testcase_14 AC 39 ms
60,576 KB
testcase_15 AC 33 ms
53,132 KB
testcase_16 AC 36 ms
59,296 KB
testcase_17 AC 50 ms
67,028 KB
testcase_18 AC 48 ms
64,644 KB
testcase_19 AC 51 ms
66,304 KB
testcase_20 AC 37 ms
60,672 KB
testcase_21 AC 50 ms
64,852 KB
testcase_22 AC 51 ms
65,416 KB
testcase_23 AC 43 ms
61,796 KB
testcase_24 AC 33 ms
52,940 KB
testcase_25 AC 33 ms
52,128 KB
testcase_26 AC 37 ms
61,240 KB
testcase_27 AC 51 ms
65,980 KB
testcase_28 AC 55 ms
66,648 KB
testcase_29 AC 52 ms
67,084 KB
testcase_30 AC 50 ms
67,036 KB
testcase_31 AC 33 ms
53,352 KB
testcase_32 AC 53 ms
67,808 KB
testcase_33 AC 52 ms
65,676 KB
testcase_34 AC 58 ms
67,212 KB
testcase_35 AC 52 ms
65,448 KB
testcase_36 AC 49 ms
65,236 KB
testcase_37 AC 49 ms
66,120 KB
testcase_38 AC 54 ms
68,288 KB
testcase_39 AC 54 ms
67,384 KB
testcase_40 AC 55 ms
68,052 KB
testcase_41 AC 56 ms
67,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B.reverse()
C = [[] for j in range(m)]
for mask in range(1<<n):
    x = 0
    for i in range(n):
        if (mask>>i)&1:
            x += A[i]
    for j in range(m):
        if x <= B[j]:
            C[j].append(mask)
INF =10**18
dp = [INF]*(1<<n)
dp[0] = 0
for j in range(m):
    nx = [INF]*(1<<n)
    for mask1 in range(1<<n):
        nx[mask1] = dp[mask1]
    for mask1 in range(1<<n):
        for mask2 in C[j]:
            nx[mask1|mask2] = min(nx[mask1|mask2], dp[mask1]+1)
    dp = nx
if dp[-1] != INF:
    print(dp[-1])
else:
    print(-1)
0