結果

問題 No.2730 Two Types Luggage
ユーザー るこーそーるこーそー
提出日時 2024-09-24 20:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 891 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 267,292 KB
最終ジャッジ日時 2024-09-24 20:22:18
合計ジャッジ時間 15,361 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 45 ms
61,056 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 60 ms
63,616 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 44 ms
59,776 KB
testcase_07 AC 37 ms
52,736 KB
testcase_08 AC 37 ms
52,352 KB
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 52 ms
66,560 KB
testcase_11 AC 386 ms
205,884 KB
testcase_12 AC 891 ms
264,280 KB
testcase_13 AC 343 ms
174,424 KB
testcase_14 AC 365 ms
207,444 KB
testcase_15 AC 476 ms
101,972 KB
testcase_16 AC 175 ms
118,456 KB
testcase_17 AC 416 ms
231,580 KB
testcase_18 AC 411 ms
230,852 KB
testcase_19 AC 70 ms
79,960 KB
testcase_20 AC 182 ms
131,836 KB
testcase_21 AC 323 ms
203,952 KB
testcase_22 AC 439 ms
256,032 KB
testcase_23 AC 98 ms
90,184 KB
testcase_24 AC 210 ms
142,292 KB
testcase_25 AC 332 ms
207,264 KB
testcase_26 AC 128 ms
102,260 KB
testcase_27 AC 327 ms
203,500 KB
testcase_28 AC 196 ms
140,140 KB
testcase_29 AC 387 ms
232,592 KB
testcase_30 AC 428 ms
92,324 KB
testcase_31 AC 288 ms
168,824 KB
testcase_32 AC 259 ms
174,580 KB
testcase_33 AC 818 ms
266,204 KB
testcase_34 AC 827 ms
267,292 KB
testcase_35 AC 797 ms
264,296 KB
testcase_36 AC 792 ms
264,572 KB
testcase_37 AC 773 ms
264,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left

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)
acc=[0]*(n+1)
for i in range(n):
    acc[i+1]=acc[i]+A[i]

ans=0
for mask in range(1<<m):
    val,weight=0,0
    for i in range(m):
        if mask>>i&1:
            weight+=B[i]
            val+=C[i]
    
    if weight>w:continue
    
    val+=acc[min(n,w-weight)]
    ans=max(ans,val)
    
print(ans)
0