結果

問題 No.2364 Knapsack Problem
ユーザー ShirotsumeShirotsume
提出日時 2023-06-30 22:18:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,396 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 87,016 KB
実行使用メモリ 82,128 KB
最終ジャッジ日時 2023-09-21 16:25:04
合計ジャッジ時間 9,130 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
74,660 KB
testcase_01 AC 107 ms
74,260 KB
testcase_02 AC 110 ms
74,688 KB
testcase_03 AC 108 ms
74,576 KB
testcase_04 AC 109 ms
74,552 KB
testcase_05 AC 117 ms
79,276 KB
testcase_06 AC 112 ms
74,476 KB
testcase_07 AC 171 ms
81,676 KB
testcase_08 AC 108 ms
74,564 KB
testcase_09 AC 135 ms
81,172 KB
testcase_10 AC 150 ms
81,584 KB
testcase_11 AC 144 ms
81,128 KB
testcase_12 AC 171 ms
81,388 KB
testcase_13 AC 518 ms
81,692 KB
testcase_14 AC 392 ms
81,648 KB
testcase_15 AC 210 ms
81,476 KB
testcase_16 AC 200 ms
81,776 KB
testcase_17 AC 161 ms
81,372 KB
testcase_18 TLE -
testcase_19 AC 186 ms
81,448 KB
testcase_20 AC 155 ms
81,476 KB
testcase_21 AC 199 ms
82,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0