結果
問題 | No.2364 Knapsack Problem |
ユーザー | ntuda |
提出日時 | 2023-07-01 15:33:24 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 56 ms / 3,000 ms |
コード長 | 823 bytes |
コンパイル時間 | 302 ms |
コンパイル使用メモリ | 82,172 KB |
実行使用メモリ | 66,940 KB |
最終ジャッジ日時 | 2024-07-08 01:47:10 |
合計ジャッジ時間 | 2,113 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
52,904 KB |
testcase_01 | AC | 43 ms
52,800 KB |
testcase_02 | AC | 40 ms
53,436 KB |
testcase_03 | AC | 38 ms
52,612 KB |
testcase_04 | AC | 37 ms
52,320 KB |
testcase_05 | AC | 38 ms
53,684 KB |
testcase_06 | AC | 38 ms
53,264 KB |
testcase_07 | AC | 50 ms
64,404 KB |
testcase_08 | AC | 37 ms
53,244 KB |
testcase_09 | AC | 49 ms
63,380 KB |
testcase_10 | AC | 53 ms
65,240 KB |
testcase_11 | AC | 37 ms
53,220 KB |
testcase_12 | AC | 54 ms
65,416 KB |
testcase_13 | AC | 52 ms
64,872 KB |
testcase_14 | AC | 55 ms
65,060 KB |
testcase_15 | AC | 54 ms
65,608 KB |
testcase_16 | AC | 54 ms
64,988 KB |
testcase_17 | AC | 52 ms
64,692 KB |
testcase_18 | AC | 54 ms
66,940 KB |
testcase_19 | AC | 54 ms
66,164 KB |
testcase_20 | AC | 55 ms
65,488 KB |
testcase_21 | AC | 56 ms
66,924 KB |
ソースコード
N, M, W0 = map(int, input().split()) A = list(map(int, input().split())) B = list(map(int, input().split())) C = [-i for i in list(map(int, input().split()))] D = [-i for i in list(map(int, input().split()))] NM = N + M W = [0] * (1 << NM) V = [0] * (1 << NM) checked = set() ans = 0 q = [] for i in range(N): x = 1 << i q.append(1 << i) W[x] = A[i] V[x] = B[i] A += C B += D while q: x = q.pop(-1) v = V[x] w = W[x] for i in range(NM): if x >> i & 1: continue y = x | (1 << i) if y in checked: continue if W0 < w + A[i]: checked.add(y) if 0 <= w + A[i] <= W0: y = x | (1 << i) W[y] = w + A[i] V[y] = v + B[i] q.append(y) checked.add(y) print(max(V))