結果

問題 No.2730 Two Types Luggage
ユーザー loop0919loop0919
提出日時 2024-04-19 21:42:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,133 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 268,728 KB
最終ジャッジ日時 2024-10-11 14:32:38
合計ジャッジ時間 18,718 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 62 ms
64,768 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 117 ms
75,648 KB
testcase_05 AC 82 ms
75,648 KB
testcase_06 AC 46 ms
57,856 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 43 ms
51,968 KB
testcase_09 AC 87 ms
75,904 KB
testcase_10 AC 60 ms
68,608 KB
testcase_11 AC 426 ms
231,516 KB
testcase_12 AC 1,081 ms
266,516 KB
testcase_13 AC 357 ms
214,924 KB
testcase_14 AC 431 ms
233,072 KB
testcase_15 AC 727 ms
107,136 KB
testcase_16 AC 216 ms
140,804 KB
testcase_17 AC 503 ms
262,972 KB
testcase_18 AC 478 ms
256,892 KB
testcase_19 AC 83 ms
85,376 KB
testcase_20 AC 220 ms
156,812 KB
testcase_21 AC 416 ms
241,164 KB
testcase_22 AC 521 ms
265,832 KB
testcase_23 AC 154 ms
94,592 KB
testcase_24 AC 284 ms
176,808 KB
testcase_25 AC 420 ms
230,464 KB
testcase_26 AC 152 ms
115,344 KB
testcase_27 AC 424 ms
240,008 KB
testcase_28 AC 240 ms
168,892 KB
testcase_29 AC 474 ms
258,508 KB
testcase_30 AC 666 ms
94,848 KB
testcase_31 AC 361 ms
211,388 KB
testcase_32 AC 301 ms
173,848 KB
testcase_33 AC 1,111 ms
267,512 KB
testcase_34 AC 1,118 ms
268,472 KB
testcase_35 AC 1,133 ms
267,972 KB
testcase_36 AC 1,122 ms
268,728 KB
testcase_37 AC 1,129 ms
267,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import combinations, accumulate

N, M, W = map(int, input().split())
A = sorted(map(int, input().split()), reverse=True)
B = list(map(int, input().split()))
C = list(map(int, input().split()))

acc_A = [0] + list(accumulate(A))

ans = acc_A[min(W, N)]

for i in range(1, M+1):
    for comb in combinations(zip(B, C), r=i):
        sum_weight = sum([b for b, _ in comb])
        sum_value = sum([c for _, c in comb])
        
        if sum_weight > W:
            continue
        
        value = sum_value + acc_A[min(W - sum_weight, N)]
        ans = max(ans, value)

print(ans)
0