結果

問題 No.2364 Knapsack Problem
ユーザー ShirotsumeShirotsume
提出日時 2023-06-30 21:57:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 911 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-07 09:43:08
合計ジャッジ時間 2,700 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
55,040 KB
testcase_01 AC 39 ms
55,040 KB
testcase_02 AC 38 ms
55,296 KB
testcase_03 AC 38 ms
55,424 KB
testcase_04 AC 40 ms
56,192 KB
testcase_05 AC 49 ms
66,048 KB
testcase_06 AC 39 ms
55,936 KB
testcase_07 AC 67 ms
76,800 KB
testcase_08 AC 38 ms
55,296 KB
testcase_09 WA -
testcase_10 AC 62 ms
73,216 KB
testcase_11 AC 48 ms
65,664 KB
testcase_12 AC 70 ms
77,184 KB
testcase_13 AC 77 ms
76,800 KB
testcase_14 WA -
testcase_15 AC 73 ms
77,176 KB
testcase_16 AC 71 ms
77,020 KB
testcase_17 AC 69 ms
76,908 KB
testcase_18 AC 70 ms
77,048 KB
testcase_19 AC 69 ms
77,240 KB
testcase_20 AC 72 ms
76,928 KB
testcase_21 AC 69 ms
76,912 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 = []
        for i in range(n):
            if 1 & (bit1 >> i):
                WV.append((a[i], b[i]))
        WIS = []
        for i in range(m):
            if 1 & (bit2 >> i):
                WIS.append((c[i], d[i]))
        noww = 0
        nowv = 0
        for x, y in WV:
            noww += x
            nowv += y
        for x, y in WIS:
            noww += x
            nowv += y
        if 0 <= noww <= w:
            ans = max(ans, nowv)
print(ans)
0