結果
問題 | No.2364 Knapsack Problem |
ユーザー | Shirotsume |
提出日時 | 2023-06-30 22:21:43 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,396 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 18,076 KB |
最終ジャッジ日時 | 2024-07-07 10:12:32 |
合計ジャッジ時間 | 5,824 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
17,948 KB |
testcase_01 | AC | 27 ms
11,008 KB |
testcase_02 | AC | 27 ms
11,008 KB |
testcase_03 | AC | 27 ms
11,136 KB |
testcase_04 | AC | 28 ms
11,008 KB |
testcase_05 | AC | 28 ms
11,136 KB |
testcase_06 | AC | 27 ms
11,008 KB |
testcase_07 | AC | 280 ms
11,008 KB |
testcase_08 | AC | 27 ms
11,136 KB |
testcase_09 | AC | 32 ms
11,136 KB |
testcase_10 | AC | 45 ms
11,136 KB |
testcase_11 | AC | 153 ms
11,136 KB |
testcase_12 | AC | 230 ms
11,008 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
ソースコード
import sys, time, random from collections import deque, Counter, defaultdict input = lambda: sys.stdin.readline().rstrip() ii = lambda: int(input()) mi = lambda: map(int, input().split()) li = lambda: list(mi()) inf = 2 ** 63 - 1 mod = 998244353 import time t1 = time.time() n, m, w = mi() a = li() b = li() c = [v for v in li()] d = [v for v in li()] ans = 0 import itertools for bit1 in range(1 << n): for bit2 in range(1 << m): WV = [] p = 0 for i in range(n): if 1 & (bit1 >> i): WV.append((a[i], b[i])) p += b[i] if ans > p: break WIS = [] for i in range(m): if 1 & (bit2 >> i): WIS.append((c[i], d[i])) p -= d[i] if ans > p: continue for WV in itertools.permutations(WV): for WIS in itertools.permutations(WIS): j = 0 noww = 0 nowv = 0 for x, y in WV: noww += x nowv += y if noww > w: nowv = -inf break if j < len(WIS) and WIS[j][0] <= noww: noww -= WIS[j][0] nowv -= WIS[j][1] j += 1 ans = max(ans, nowv) print(ans)