結果

問題 No.50 おもちゃ箱
ユーザー tobusakanatobusakana
提出日時 2022-10-23 22:30:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 260 ms / 5,000 ms
コード長 1,911 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 84,736 KB
最終ジャッジ日時 2024-07-02 11:30:43
合計ジャッジ時間 5,138 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,168 KB
testcase_01 AC 222 ms
84,224 KB
testcase_02 AC 59 ms
68,864 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 58 ms
74,112 KB
testcase_06 AC 67 ms
70,656 KB
testcase_07 AC 35 ms
52,096 KB
testcase_08 AC 46 ms
64,000 KB
testcase_09 AC 39 ms
59,904 KB
testcase_10 AC 39 ms
51,840 KB
testcase_11 AC 48 ms
62,592 KB
testcase_12 AC 44 ms
59,392 KB
testcase_13 AC 41 ms
59,776 KB
testcase_14 AC 63 ms
68,992 KB
testcase_15 AC 38 ms
57,600 KB
testcase_16 AC 58 ms
67,584 KB
testcase_17 AC 62 ms
71,424 KB
testcase_18 AC 56 ms
69,760 KB
testcase_19 AC 91 ms
78,080 KB
testcase_20 AC 64 ms
72,576 KB
testcase_21 AC 62 ms
71,040 KB
testcase_22 AC 68 ms
74,112 KB
testcase_23 AC 38 ms
52,736 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 35 ms
52,096 KB
testcase_26 AC 49 ms
63,104 KB
testcase_27 AC 61 ms
70,272 KB
testcase_28 AC 138 ms
84,224 KB
testcase_29 AC 131 ms
84,672 KB
testcase_30 AC 130 ms
84,352 KB
testcase_31 AC 34 ms
52,736 KB
testcase_32 AC 260 ms
84,352 KB
testcase_33 AC 223 ms
84,736 KB
testcase_34 AC 136 ms
84,480 KB
testcase_35 AC 186 ms
84,736 KB
testcase_36 AC 222 ms
84,224 KB
testcase_37 AC 158 ms
84,644 KB
testcase_38 AC 134 ms
84,480 KB
testcase_39 AC 146 ms
84,500 KB
testcase_40 AC 105 ms
84,352 KB
testcase_41 AC 214 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[S][T] = 今までに詰めたおもちゃの集合がS、おもちゃ箱の集合がTのとき、
# Tの最後の箱のスペースの大きさ

import sys
readline = sys.stdin.readline
N = int(readline())
A = list(map(int,readline().split()))
M = int(readline())
B = list(map(int,readline().split()))

dp = [[-1] * (1 << M) for i in range(1 << N)]
dp[0][0] = 0
for S in range(1 << N):
  for T in range(1 << M):
    if dp[S][T] == -1:
      continue
    for toy in range(N): # 次に詰めるおもちゃ
      if (S >> toy) & 1:
        continue
      next_S = S | (1 << toy)
      if dp[S][T] >= A[toy]: # 今のスペースに詰められる
        if dp[next_S][T] < dp[S][T] - A[toy]:
          dp[next_S][T] = dp[S][T] - A[toy]
      else: # 詰められないので新しいおもちゃ箱を選ぶ
#        print(bin(S)[2:].zfill(N), bin(T)[2:].zfill(M), "新しいおもちゃ箱選ぶ")
        for box in range(M):
          if (T >> box) & 1:
#            print(box,"は使用済み")
            continue
          if B[box] < A[toy]: # 詰められない
#            print(B[box],"に",A[toy],"は詰められない")
            continue
          next_T = T | (1 << box)
          if dp[next_S][next_T] < B[box] - A[toy]:
            dp[next_S][next_T] = B[box] - A[toy]
#            print("next_S",bin(next_S)[2:].zfill(N),"next_T",bin(next_T)[2:].zfill(M),"空きは",B[box] - A[toy])

            
#for d in dp:
#  print(d)

def popcnt(x):
  res = 0
  while x:
    if x & 1:
      res += 1
    x >>= 1
  return res

ans = M + 1
# dp[-1][おもちゃ箱]の状態で、-1で無い物を探す。
# おもちゃ箱に立っているbitが最も少ないものが答え
for T in range(1 << M):
  if dp[-1][T] != -1:
#    print(bin(T)[2:].zfill(M),"のとき空きは",dp[-1][T])
    bits = popcnt(T)
    if ans > bits:
      ans = bits
    
if ans == M + 1:
  print(-1)
else:
  print(ans)
0