結果

問題 No.2364 Knapsack Problem
ユーザー miya145592miya145592
提出日時 2023-06-30 22:57:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,597 ms / 3,000 ms
コード長 1,094 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 506,112 KB
最終ジャッジ日時 2024-07-07 10:51:37
合計ジャッジ時間 17,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,988 KB
testcase_01 AC 38 ms
58,676 KB
testcase_02 AC 49 ms
66,688 KB
testcase_03 AC 42 ms
60,972 KB
testcase_04 AC 62 ms
74,384 KB
testcase_05 AC 80 ms
81,340 KB
testcase_06 AC 66 ms
77,032 KB
testcase_07 AC 247 ms
158,980 KB
testcase_08 AC 40 ms
60,876 KB
testcase_09 AC 214 ms
143,904 KB
testcase_10 AC 123 ms
88,624 KB
testcase_11 AC 76 ms
80,340 KB
testcase_12 AC 1,546 ms
505,340 KB
testcase_13 AC 1,535 ms
506,112 KB
testcase_14 AC 1,530 ms
505,276 KB
testcase_15 AC 1,578 ms
504,724 KB
testcase_16 AC 1,526 ms
504,828 KB
testcase_17 AC 1,518 ms
505,728 KB
testcase_18 AC 1,518 ms
504,880 KB
testcase_19 AC 1,597 ms
504,624 KB
testcase_20 AC 1,578 ms
504,944 KB
testcase_21 AC 1,528 ms
504,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))
INF = 10**15
dp = [[-INF for _ in range(W+1)] for _ in range(1<<(N+M))]
dp[0][0] = 0
for i in range(N+M):
    ndp = [[-INF for _ in range(W+1)] for _ in range(1<<(N+M))]
    for j in range(1<<(N+M)):
        for w in range(W+1):
            if dp[j][w]==-INF:
                continue
            for k in range(N+M):
                if (j>>k)&1:
                    continue
                ndp[j][w] = max(ndp[j][w], dp[j][w])
                if k<N:
                    a = A[k]
                    b = B[k]
                    if 0<=w+a<=W:
                        ndp[j|(1<<k)][w+a] = max(ndp[j|(1<<k)][w+a], dp[j][w]+b)
                else:
                    c = C[k-N]
                    d = D[k-N]
                    if 0<=w-c<=W:
                        ndp[j|(1<<k)][w-c] = max(ndp[j|(1<<k)][w-c], dp[j][w]-d)
    dp = ndp

ans = 0
for j in range(1<<(N+M)):
    ans = max(ans, max(dp[j]))
print(ans)
0