結果

問題 No.2730 Two Types Luggage
ユーザー ThetaTheta
提出日時 2024-04-23 19:23:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 750 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 268,088 KB
最終ジャッジ日時 2024-10-15 20:13:09
合計ジャッジ時間 18,437 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 52 ms
60,544 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 64 ms
62,208 KB
testcase_05 AC 52 ms
59,904 KB
testcase_06 AC 46 ms
58,496 KB
testcase_07 AC 42 ms
52,096 KB
testcase_08 AC 41 ms
52,096 KB
testcase_09 AC 54 ms
60,544 KB
testcase_10 AC 60 ms
68,864 KB
testcase_11 AC 448 ms
231,832 KB
testcase_12 AC 742 ms
266,768 KB
testcase_13 AC 397 ms
210,364 KB
testcase_14 AC 458 ms
232,932 KB
testcase_15 AC 352 ms
107,312 KB
testcase_16 AC 196 ms
135,428 KB
testcase_17 AC 513 ms
263,076 KB
testcase_18 AC 484 ms
256,928 KB
testcase_19 AC 84 ms
84,480 KB
testcase_20 AC 225 ms
154,020 KB
testcase_21 AC 439 ms
241,180 KB
testcase_22 AC 556 ms
265,708 KB
testcase_23 AC 118 ms
94,336 KB
testcase_24 AC 293 ms
176,948 KB
testcase_25 AC 454 ms
230,588 KB
testcase_26 AC 153 ms
113,424 KB
testcase_27 AC 436 ms
240,008 KB
testcase_28 AC 256 ms
165,556 KB
testcase_29 AC 484 ms
258,892 KB
testcase_30 AC 311 ms
94,592 KB
testcase_31 AC 366 ms
205,228 KB
testcase_32 AC 309 ms
174,492 KB
testcase_33 AC 742 ms
267,840 KB
testcase_34 AC 741 ms
268,088 KB
testcase_35 AC 745 ms
268,028 KB
testcase_36 AC 737 ms
267,972 KB
testcase_37 AC 750 ms
267,780 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import accumulate


def main():
    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()))
    A_accum = list(accumulate(A, initial=0))
    max_value = 0
    for bit in range(2**M):
        tmp_bit = bit
        idx = 0
        Y_weight_sum = 0
        Y_value_sum = 0
        while tmp_bit > 0:
            if tmp_bit & 1:
                Y_weight_sum += B[idx]
                Y_value_sum += C[idx]
            idx += 1
            tmp_bit >>= 1
        if Y_weight_sum > W:
            continue
        max_value = max(
            max_value,
            Y_value_sum + A_accum[min(W - Y_weight_sum, N)]
        )
    print(max_value)


if __name__ == "__main__":
    main()
0