結果
問題 | No.50 おもちゃ箱 |
ユーザー | ckawatak |
提出日時 | 2019-01-14 19:43:03 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 846 bytes |
コンパイル時間 | 141 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 70,532 KB |
最終ジャッジ日時 | 2024-06-22 14:32:13 |
合計ジャッジ時間 | 4,332 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 33 ms
53,668 KB |
testcase_04 | AC | 34 ms
52,404 KB |
testcase_05 | AC | 148 ms
69,200 KB |
testcase_06 | AC | 62 ms
69,524 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 61 ms
68,152 KB |
testcase_18 | AC | 52 ms
69,000 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 60 ms
69,648 KB |
testcase_22 | AC | 68 ms
68,212 KB |
testcase_23 | AC | 41 ms
62,532 KB |
testcase_24 | AC | 33 ms
54,092 KB |
testcase_25 | AC | 32 ms
52,888 KB |
testcase_26 | AC | 48 ms
64,744 KB |
testcase_27 | AC | 64 ms
67,516 KB |
testcase_28 | WA | - |
testcase_29 | AC | 117 ms
69,096 KB |
testcase_30 | AC | 60 ms
67,856 KB |
testcase_31 | AC | 33 ms
52,280 KB |
testcase_32 | WA | - |
testcase_33 | AC | 121 ms
69,548 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 99 ms
68,836 KB |
testcase_39 | WA | - |
testcase_40 | AC | 129 ms
69,324 KB |
testcase_41 | AC | 130 ms
69,288 KB |
ソースコード
N = int(input()) A = list(map(int, input().split(' '))) M = int(input()) B = list(map(int, input().split(' '))) 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(M+1): answer = min(answer, dp[i][(1<<N)-1]) if answer != float('inf'): print(answer) else: print(-1)