結果

問題 No.2730 Two Types Luggage
ユーザー 👑 rin204rin204
提出日時 2024-04-20 01:10:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 466 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 267,468 KB
最終ジャッジ日時 2024-10-11 19:58:55
合計ジャッジ時間 15,240 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 44 ms
60,928 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 62 ms
62,592 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 42 ms
59,776 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 41 ms
51,968 KB
testcase_09 AC 46 ms
60,672 KB
testcase_10 AC 51 ms
66,176 KB
testcase_11 AC 373 ms
205,700 KB
testcase_12 AC 830 ms
264,352 KB
testcase_13 AC 318 ms
173,952 KB
testcase_14 AC 377 ms
207,496 KB
testcase_15 AC 481 ms
107,348 KB
testcase_16 AC 177 ms
118,384 KB
testcase_17 AC 464 ms
231,628 KB
testcase_18 AC 447 ms
230,940 KB
testcase_19 AC 71 ms
78,976 KB
testcase_20 AC 204 ms
131,900 KB
testcase_21 AC 350 ms
203,812 KB
testcase_22 AC 454 ms
255,992 KB
testcase_23 AC 103 ms
89,472 KB
testcase_24 AC 218 ms
142,924 KB
testcase_25 AC 350 ms
207,192 KB
testcase_26 AC 136 ms
102,272 KB
testcase_27 AC 340 ms
202,664 KB
testcase_28 AC 207 ms
140,628 KB
testcase_29 AC 402 ms
233,200 KB
testcase_30 AC 451 ms
91,904 KB
testcase_31 AC 294 ms
169,292 KB
testcase_32 AC 272 ms
174,572 KB
testcase_33 AC 826 ms
266,320 KB
testcase_34 AC 823 ms
267,468 KB
testcase_35 AC 823 ms
264,028 KB
testcase_36 AC 821 ms
264,536 KB
testcase_37 AC 822 ms
264,120 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()))
A.sort(reverse=True)
cum = [0] * (n + 1)
for i in range(n):
    cum[i + 1] = cum[i] + A[i]

ans = 0
for bit in range(1 << m):
    w = 0
    v = 0
    for i in range(m):
        if bit >> i & 1:
            w += B[i]
            v += C[i]
    if w <= W:
        v += cum[min(n, W - w)]
        ans = max(ans, v)
print(ans)
0