結果

問題 No.50 おもちゃ箱
ユーザー ckawatakckawatak
提出日時 2019-01-14 22:51:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 876 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 71,304 KB
最終ジャッジ日時 2024-06-23 04:39:23
合計ジャッジ時間 5,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
64,740 KB
testcase_01 AC 133 ms
69,428 KB
testcase_02 AC 47 ms
64,620 KB
testcase_03 AC 34 ms
52,748 KB
testcase_04 AC 34 ms
53,504 KB
testcase_05 AC 155 ms
68,700 KB
testcase_06 AC 67 ms
70,604 KB
testcase_07 AC 35 ms
53,564 KB
testcase_08 AC 40 ms
62,076 KB
testcase_09 AC 39 ms
60,916 KB
testcase_10 AC 34 ms
52,876 KB
testcase_11 AC 40 ms
61,892 KB
testcase_12 AC 40 ms
60,200 KB
testcase_13 AC 35 ms
53,504 KB
testcase_14 AC 45 ms
63,068 KB
testcase_15 AC 33 ms
53,132 KB
testcase_16 AC 44 ms
63,516 KB
testcase_17 AC 70 ms
69,880 KB
testcase_18 AC 54 ms
67,620 KB
testcase_19 AC 109 ms
70,140 KB
testcase_20 AC 54 ms
66,488 KB
testcase_21 AC 63 ms
67,408 KB
testcase_22 AC 88 ms
69,348 KB
testcase_23 AC 40 ms
61,936 KB
testcase_24 AC 34 ms
52,260 KB
testcase_25 AC 34 ms
52,744 KB
testcase_26 AC 46 ms
63,576 KB
testcase_27 AC 68 ms
68,936 KB
testcase_28 AC 120 ms
69,600 KB
testcase_29 AC 121 ms
69,640 KB
testcase_30 AC 107 ms
68,660 KB
testcase_31 AC 34 ms
52,540 KB
testcase_32 AC 125 ms
69,004 KB
testcase_33 AC 123 ms
71,304 KB
testcase_34 AC 142 ms
69,416 KB
testcase_35 AC 133 ms
69,380 KB
testcase_36 AC 127 ms
70,232 KB
testcase_37 AC 111 ms
70,208 KB
testcase_38 AC 118 ms
69,328 KB
testcase_39 AC 147 ms
70,976 KB
testcase_40 AC 134 ms
70,040 KB
testcase_41 AC 133 ms
69,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split(' ')))
M = int(input())
B = list(map(int, input().split(' ')))
B = sorted(B, reverse=True)

sum = [0 for _ in range(1<<N)]
for i in range(1<<N):
    for j in range(N):
        if i & (1<<j):
            sum[i] = sum[i] + A[j]

# dp[i][j]: minimum number of boxes
# when boxes are used until i to accommodate j collection of toys
dp = []
for i in range(M+1):
    dp.append([float('inf') for _ in range(1<<N)])

dp[0][0] = 0

for i in range(M):
    for j in range(1<<N):
        if dp[i][j] == float('inf'):
            continue
        for k in range(1<<N):
            if (j & k == 0) and (sum[k] <= B[i]):     
                dp[i+1][j|k] = min(dp[i+1][j|k], dp[i][j]+1)

answer = float('inf')
for i in range(1,M+1):
    answer = min(answer, dp[i][(1<<N)-1])

if answer != float('inf'):
    print(answer)
else:
    print(-1)
0