結果

問題 No.2730 Two Types Luggage
ユーザー ShirotsumeShirotsume
提出日時 2024-04-19 22:37:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 271,912 KB
最終ジャッジ日時 2024-10-11 16:18:07
合計ジャッジ時間 14,604 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
56,688 KB
testcase_01 AC 43 ms
55,656 KB
testcase_02 AC 51 ms
65,156 KB
testcase_03 AC 44 ms
56,664 KB
testcase_04 AC 69 ms
67,668 KB
testcase_05 AC 52 ms
64,148 KB
testcase_06 AC 49 ms
63,408 KB
testcase_07 AC 44 ms
56,040 KB
testcase_08 AC 44 ms
56,536 KB
testcase_09 AC 52 ms
64,536 KB
testcase_10 AC 57 ms
70,292 KB
testcase_11 AC 345 ms
206,868 KB
testcase_12 AC 806 ms
264,776 KB
testcase_13 AC 288 ms
177,564 KB
testcase_14 AC 364 ms
226,492 KB
testcase_15 AC 490 ms
103,120 KB
testcase_16 AC 169 ms
121,052 KB
testcase_17 AC 414 ms
235,744 KB
testcase_18 AC 393 ms
229,424 KB
testcase_19 AC 75 ms
83,180 KB
testcase_20 AC 186 ms
135,052 KB
testcase_21 AC 337 ms
204,772 KB
testcase_22 AC 440 ms
253,912 KB
testcase_23 AC 110 ms
92,972 KB
testcase_24 AC 217 ms
145,596 KB
testcase_25 AC 342 ms
210,756 KB
testcase_26 AC 136 ms
105,496 KB
testcase_27 AC 338 ms
204,904 KB
testcase_28 AC 206 ms
143,360 KB
testcase_29 AC 403 ms
231,288 KB
testcase_30 AC 439 ms
93,556 KB
testcase_31 AC 293 ms
175,132 KB
testcase_32 AC 274 ms
157,484 KB
testcase_33 AC 807 ms
271,912 KB
testcase_34 AC 804 ms
264,980 KB
testcase_35 AC 809 ms
270,192 KB
testcase_36 AC 816 ms
270,188 KB
testcase_37 AC 807 ms
270,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, m, w = mi()

a = li()
b = li()
c = li()

a.sort(reverse=True)

maxi = [0] * (n + 1)

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