結果

問題 No.2364 Knapsack Problem
ユーザー FromBooskaFromBooska
提出日時 2023-07-01 08:14:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,186 ms / 3,000 ms
コード長 1,642 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 142,080 KB
最終ジャッジ日時 2024-07-07 19:10:03
合計ジャッジ時間 22,628 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,776 KB
testcase_01 AC 47 ms
59,776 KB
testcase_02 AC 72 ms
69,760 KB
testcase_03 AC 56 ms
63,360 KB
testcase_04 AC 86 ms
74,368 KB
testcase_05 AC 121 ms
77,824 KB
testcase_06 AC 91 ms
76,544 KB
testcase_07 AC 204 ms
81,920 KB
testcase_08 AC 55 ms
62,848 KB
testcase_09 AC 258 ms
83,840 KB
testcase_10 AC 123 ms
77,696 KB
testcase_11 AC 104 ms
76,928 KB
testcase_12 AC 2,049 ms
141,568 KB
testcase_13 AC 2,018 ms
141,952 KB
testcase_14 AC 2,137 ms
141,696 KB
testcase_15 AC 2,186 ms
141,952 KB
testcase_16 AC 1,591 ms
141,696 KB
testcase_17 AC 2,089 ms
141,440 KB
testcase_18 AC 1,512 ms
142,080 KB
testcase_19 AC 2,136 ms
141,696 KB
testcase_20 AC 2,129 ms
141,568 KB
testcase_21 AC 2,010 ms
141,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N, M < 7と小さいが、全permutaitonsは間に合わない
# NもMも使っても使わなくてもいい
# NはB降順でソートするか?
# MはD昇順でソート?、しかし、d小さいの2つより、d大きくてc大きい方がいい可能性ある
# どれを使うのかというのもあるし、どの順番で使うのか、というのもある
# トラベリングセールスマン、巡回セールスマン、ビットdp
# dp[集合sに到達済み][重さw]での最高価値
# MLE出たのでINFを下げる

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()))

AC = A+C
BD = B+D

# bit dp、dp[集合sに到達済み][重さw]での最高価値
INF = 10**10
NM = N+M
set_num = 1<<NM
dp = [[-INF]*(W+1) for i in range(set_num)]
dp[0][0] = 0

for s in range(set_num):
    for w in range(W+1):
        for i in range(NM):
            # 集合sに到達済みのときに、新たにiを訪れる
            if (s>>i) & 1 == 1:
                # 既にiに到達済みならばcontinue
                continue
            if i < N: #商品
                if w+AC[i] <= W:
                    dp[s|(1<<i)][w+AC[i]] = max(dp[s|(1<<i)][w+AC[i]], dp[s][w]+BD[i])
            else: #魔法
                if 0 <= w-AC[i]:
                    #print('s', s, 'w', w, 'i', i, 's|(1<<i)', s|(1<<i))
                    dp[s|(1<<i)][w-AC[i]] = max(dp[s|(1<<i)][w-AC[i]], dp[s][w]-BD[i])

ans = 0
for s in range(set_num):
    for w in range(W+1):
        ans = max(ans, dp[s][w])
print(ans)




0