結果

問題 No.2730 Two Types Luggage
ユーザー playerplayer
提出日時 2024-04-22 18:20:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 494 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 268,372 KB
最終ジャッジ日時 2024-10-14 17:31:36
合計ジャッジ時間 16,982 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 52 ms
60,544 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 70 ms
62,720 KB
testcase_05 AC 51 ms
60,160 KB
testcase_06 AC 47 ms
59,264 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 53 ms
60,800 KB
testcase_10 AC 60 ms
68,608 KB
testcase_11 AC 442 ms
231,816 KB
testcase_12 AC 897 ms
266,816 KB
testcase_13 AC 366 ms
215,212 KB
testcase_14 AC 435 ms
232,972 KB
testcase_15 AC 519 ms
107,008 KB
testcase_16 AC 195 ms
137,860 KB
testcase_17 AC 504 ms
262,932 KB
testcase_18 AC 485 ms
256,696 KB
testcase_19 AC 80 ms
85,248 KB
testcase_20 AC 221 ms
156,408 KB
testcase_21 AC 429 ms
241,452 KB
testcase_22 AC 536 ms
266,248 KB
testcase_23 AC 112 ms
97,356 KB
testcase_24 AC 258 ms
176,932 KB
testcase_25 AC 450 ms
230,112 KB
testcase_26 AC 147 ms
114,772 KB
testcase_27 AC 423 ms
240,548 KB
testcase_28 AC 241 ms
168,712 KB
testcase_29 AC 488 ms
258,540 KB
testcase_30 AC 452 ms
97,664 KB
testcase_31 AC 356 ms
210,384 KB
testcase_32 AC 289 ms
174,508 KB
testcase_33 AC 878 ms
267,528 KB
testcase_34 AC 883 ms
268,304 KB
testcase_35 AC 880 ms
268,244 KB
testcase_36 AC 911 ms
268,372 KB
testcase_37 AC 885 ms
268,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate

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

a.sort(reverse=True)
acc = [0] + list(accumulate(a))
ans = -1

for i in range(1 << m):
    weight = 0
    value = 0
    for j in range(m):
        if i >> j & 1:
            weight += b[j]
            value += c[j]
    if weight > w:
        continue
    ans = max(ans, value + acc[min(n, w - weight)])

print(ans)
0