結果

問題 No.50 おもちゃ箱
ユーザー zimphazimpha
提出日時 2017-12-09 02:31:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,152 KB
最終ジャッジ日時 2024-06-25 22:07:30
合計ジャッジ時間 3,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
57,600 KB
testcase_01 AC 62 ms
63,104 KB
testcase_02 AC 50 ms
58,496 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 56 ms
61,696 KB
testcase_06 AC 58 ms
62,464 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 41 ms
52,224 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 42 ms
52,096 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 48 ms
58,496 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 50 ms
57,600 KB
testcase_17 AC 61 ms
62,824 KB
testcase_18 AC 60 ms
62,592 KB
testcase_19 AC 61 ms
62,976 KB
testcase_20 AC 53 ms
60,416 KB
testcase_21 AC 58 ms
61,696 KB
testcase_22 AC 58 ms
62,592 KB
testcase_23 AC 49 ms
59,392 KB
testcase_24 AC 42 ms
51,584 KB
testcase_25 AC 42 ms
51,968 KB
testcase_26 AC 51 ms
59,264 KB
testcase_27 AC 56 ms
62,016 KB
testcase_28 AC 61 ms
63,744 KB
testcase_29 AC 61 ms
63,488 KB
testcase_30 AC 59 ms
62,592 KB
testcase_31 AC 43 ms
51,840 KB
testcase_32 AC 60 ms
62,592 KB
testcase_33 AC 59 ms
62,464 KB
testcase_34 AC 62 ms
64,152 KB
testcase_35 AC 61 ms
62,976 KB
testcase_36 AC 59 ms
63,104 KB
testcase_37 AC 60 ms
62,720 KB
testcase_38 AC 61 ms
62,720 KB
testcase_39 AC 61 ms
63,744 KB
testcase_40 AC 60 ms
63,616 KB
testcase_41 AC 60 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
m = int(input())
b = list(map(int, input().split()))
b.sort(reverse=True)

weight = [0] * (1 << n)
for mask in range(1, 1 << n):
  for i in range(n):
    weight[mask] += (mask >> i & 1) * a[i]

f = [False] * (1 << n)
f[0] = True
ret = -1
for i in range(m):
  g = [x for x in f]
  for mask in range(1 << n):
    if not f[mask]: continue
    rest = mask ^ ((1 << n) - 1)
    sub = rest
    while sub:
      if weight[sub] <= b[i]:
        g[mask | sub] = True
      sub = (sub - 1) & rest
  f = g
  if f[-1]:
    ret = i + 1
    break
print(ret)
0