結果

問題 No.2730 Two Types Luggage
ユーザー hotate29hotate29
提出日時 2024-04-19 21:41:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 889 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 268,624 KB
最終ジャッジ日時 2024-10-11 14:30:17
合計ジャッジ時間 15,330 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 52 ms
61,312 KB
testcase_03 AC 36 ms
52,336 KB
testcase_04 AC 62 ms
62,848 KB
testcase_05 AC 45 ms
60,160 KB
testcase_06 AC 42 ms
59,520 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 46 ms
61,056 KB
testcase_10 AC 52 ms
68,480 KB
testcase_11 AC 373 ms
253,320 KB
testcase_12 AC 889 ms
267,064 KB
testcase_13 AC 310 ms
211,760 KB
testcase_14 AC 375 ms
254,996 KB
testcase_15 AC 496 ms
107,280 KB
testcase_16 AC 174 ms
136,248 KB
testcase_17 AC 447 ms
264,388 KB
testcase_18 AC 414 ms
257,776 KB
testcase_19 AC 71 ms
84,352 KB
testcase_20 AC 201 ms
155,076 KB
testcase_21 AC 365 ms
251,368 KB
testcase_22 AC 472 ms
266,488 KB
testcase_23 AC 107 ms
95,616 KB
testcase_24 AC 230 ms
168,344 KB
testcase_25 AC 369 ms
254,812 KB
testcase_26 AC 139 ms
113,860 KB
testcase_27 AC 365 ms
250,280 KB
testcase_28 AC 213 ms
163,492 KB
testcase_29 AC 419 ms
255,876 KB
testcase_30 AC 451 ms
96,896 KB
testcase_31 AC 316 ms
206,804 KB
testcase_32 AC 272 ms
174,708 KB
testcase_33 AC 846 ms
267,488 KB
testcase_34 AC 839 ms
268,624 KB
testcase_35 AC 840 ms
268,544 KB
testcase_36 AC 855 ms
268,508 KB
testcase_37 AC 843 ms
268,140 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)
sa = [0]
for ai in a:
    sa.append(sa[-1] + ai)

ans = 0

for i in range(1 << m):
    weight, value = 0, 0
    for j in range(m):
        if i & (1 << j):
            weight += b[j]
            value += c[j]

    if weight > w:
        continue

    value += sa[min(w - weight, n)]
    ans = max(ans, value)

print(ans)
0