結果

問題 No.2364 Knapsack Problem
ユーザー ShirotsumeShirotsume
提出日時 2023-06-30 22:23:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,770 ms / 3,000 ms
コード長 1,473 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-07-07 10:14:23
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
55,552 KB
testcase_01 AC 37 ms
55,040 KB
testcase_02 AC 37 ms
55,424 KB
testcase_03 AC 38 ms
55,168 KB
testcase_04 AC 39 ms
56,320 KB
testcase_05 AC 35 ms
55,168 KB
testcase_06 AC 39 ms
56,192 KB
testcase_07 AC 89 ms
77,576 KB
testcase_08 AC 37 ms
55,040 KB
testcase_09 AC 59 ms
72,576 KB
testcase_10 AC 79 ms
77,500 KB
testcase_11 AC 77 ms
77,184 KB
testcase_12 AC 86 ms
77,568 KB
testcase_13 AC 380 ms
77,952 KB
testcase_14 AC 278 ms
77,900 KB
testcase_15 AC 117 ms
77,876 KB
testcase_16 AC 93 ms
77,696 KB
testcase_17 AC 74 ms
77,568 KB
testcase_18 AC 2,770 ms
77,696 KB
testcase_19 AC 93 ms
77,440 KB
testcase_20 AC 71 ms
77,440 KB
testcase_21 AC 99 ms
77,824 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
import itertools
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
for bit1 in range(1 << n):
    for bit2 in range(1 << m):
        if time.time() - t1 >= 2.7:
            print(ans)
            exit()

        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