結果

問題 No.2364 Knapsack Problem
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-24 02:45:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 3,000 ms
コード長 778 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 70,840 KB
最終ジャッジ日時 2024-09-25 05:29:47
合計ジャッジ時間 2,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
56,380 KB
testcase_01 AC 45 ms
55,712 KB
testcase_02 AC 45 ms
56,092 KB
testcase_03 AC 46 ms
55,740 KB
testcase_04 AC 47 ms
57,592 KB
testcase_05 AC 47 ms
56,932 KB
testcase_06 AC 46 ms
56,812 KB
testcase_07 AC 64 ms
70,480 KB
testcase_08 AC 47 ms
56,612 KB
testcase_09 AC 62 ms
67,068 KB
testcase_10 AC 64 ms
69,468 KB
testcase_11 AC 48 ms
56,864 KB
testcase_12 AC 65 ms
69,092 KB
testcase_13 AC 64 ms
70,208 KB
testcase_14 AC 62 ms
69,108 KB
testcase_15 AC 65 ms
69,624 KB
testcase_16 AC 64 ms
70,720 KB
testcase_17 AC 62 ms
68,128 KB
testcase_18 AC 64 ms
69,696 KB
testcase_19 AC 64 ms
68,448 KB
testcase_20 AC 66 ms
70,840 KB
testcase_21 AC 68 ms
70,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

N,M,W = map(int,input().split())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = list(map(int,input().split()))
D = list(map(int,input().split()))
N += M
A += [-i for i in C]
B += [-i for i in D]
INF = (1<<60)
dp = [-INF]*(1<<N)
dp[0] = 0
def is_ok(val):
    return 0<=val<=W
ans = 0
val = [0]*(1<<N)
for i in range(1<<N):
    if dp[i]==-INF:
        continue
    for j in range(N):
        if (i>>j)&1:
            continue
        else:
            if is_ok(dp[i]+A[j]):
                dp[i|(1<<j)] = dp[i]+A[j]
                val[i|(1<<j)] = val[i]+B[j]
                ans = max(ans,val[i|(1<<j)])
print(ans)
0