結果

問題 No.2364 Knapsack Problem
ユーザー chankei271828chankei271828
提出日時 2023-07-01 00:12:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 870 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 80,312 KB
最終ジャッジ日時 2024-07-07 11:46:28
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,828 KB
testcase_01 AC 32 ms
53,348 KB
testcase_02 AC 40 ms
61,068 KB
testcase_03 AC 33 ms
53,300 KB
testcase_04 AC 44 ms
64,172 KB
testcase_05 AC 46 ms
64,600 KB
testcase_06 AC 45 ms
63,216 KB
testcase_07 AC 75 ms
78,100 KB
testcase_08 AC 33 ms
53,652 KB
testcase_09 WA -
testcase_10 AC 77 ms
77,328 KB
testcase_11 AC 45 ms
64,044 KB
testcase_12 AC 92 ms
80,084 KB
testcase_13 AC 87 ms
79,432 KB
testcase_14 WA -
testcase_15 AC 97 ms
79,456 KB
testcase_16 AC 91 ms
79,944 KB
testcase_17 AC 93 ms
80,040 KB
testcase_18 AC 89 ms
79,612 KB
testcase_19 AC 97 ms
80,080 KB
testcase_20 AC 96 ms
80,000 KB
testcase_21 AC 90 ms
79,196 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()))
dp=[[-1]*(1<<(N+M)) for _ in range(N+M)]
w=[[-1]*(1<<(N+M)) for _ in range(N+M)]
for i in range(N+M):
    dp[i][0]=0
    w[i][0]=0
ans=0
for bit in range(1,1<<(N+M)):
    for i in range(N+M):
        if (bit>>i)&1==0:
            continue
        for j in range(N+M):
            if i<=N-1 and w[j][bit^(1<<i)]!=-1 and w[j][bit^(1<<i)]+A[i]<=W:
                dp[i][bit]=max(dp[i][bit],dp[j][bit^(1<<i)]+B[i])
                w[i][bit]=w[j][bit^(1<<i)]+A[i]
            if i>=N and w[j][bit^(1<<i)]!=-1 and w[j][bit^(1<<i)]-C[i-N]>=0:
                dp[i][bit]=max(dp[i][bit],dp[j][bit^(1<<i)]-D[i-N])
                w[i][bit]=w[j][bit^(1<<i)]-C[i-N]
        ans=max(ans,dp[i][bit])
print(ans)
#print(dp)
0