結果

問題 No.2730 Two Types Luggage
ユーザー tkykwtnbtkykwtnb
提出日時 2024-04-20 12:52:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 835 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 267,396 KB
最終ジャッジ日時 2024-10-12 08:16:12
合計ジャッジ時間 14,501 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,124 KB
testcase_01 AC 37 ms
54,132 KB
testcase_02 AC 46 ms
61,320 KB
testcase_03 AC 35 ms
53,824 KB
testcase_04 AC 60 ms
63,984 KB
testcase_05 AC 44 ms
61,260 KB
testcase_06 AC 41 ms
59,744 KB
testcase_07 AC 35 ms
53,144 KB
testcase_08 AC 35 ms
52,392 KB
testcase_09 AC 44 ms
62,000 KB
testcase_10 AC 49 ms
68,336 KB
testcase_11 AC 366 ms
205,992 KB
testcase_12 AC 835 ms
264,372 KB
testcase_13 AC 306 ms
175,128 KB
testcase_14 AC 362 ms
207,768 KB
testcase_15 AC 466 ms
107,528 KB
testcase_16 AC 170 ms
118,464 KB
testcase_17 AC 435 ms
231,664 KB
testcase_18 AC 409 ms
231,148 KB
testcase_19 AC 69 ms
80,468 KB
testcase_20 AC 195 ms
132,164 KB
testcase_21 AC 337 ms
203,848 KB
testcase_22 AC 442 ms
256,504 KB
testcase_23 AC 98 ms
90,072 KB
testcase_24 AC 213 ms
142,468 KB
testcase_25 AC 342 ms
207,640 KB
testcase_26 AC 130 ms
102,356 KB
testcase_27 AC 337 ms
203,168 KB
testcase_28 AC 198 ms
140,240 KB
testcase_29 AC 401 ms
232,892 KB
testcase_30 AC 440 ms
92,504 KB
testcase_31 AC 290 ms
169,260 KB
testcase_32 AC 270 ms
174,668 KB
testcase_33 AC 811 ms
266,648 KB
testcase_34 AC 807 ms
267,396 KB
testcase_35 AC 799 ms
264,432 KB
testcase_36 AC 818 ms
264,620 KB
testcase_37 AC 801 ms
264,648 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)
cumA=[0 for _ in range(N+1)]
for i in range(N):
    cumA[i]=cumA[i-1]+A[i]
ans=0
for i in range(2**M):
    w=0;v=0
    for j in range(M):
        if i>>j&1:w+=B[j];v+=C[j]
    if w<W:
        dw=min(N,W-w)
        w+=dw
        v+=cumA[dw-1]
    if w<=W:ans=max(ans,v)
print(ans)
0