結果

問題 No.2730 Two Types Luggage
ユーザー titiatitia
提出日時 2024-04-19 21:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 847 ms / 2,000 ms
コード長 456 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 267,400 KB
最終ジャッジ日時 2024-10-11 14:53:42
合計ジャッジ時間 14,996 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 44 ms
61,048 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 61 ms
63,232 KB
testcase_05 AC 45 ms
60,800 KB
testcase_06 AC 41 ms
60,032 KB
testcase_07 AC 39 ms
51,584 KB
testcase_08 AC 36 ms
52,064 KB
testcase_09 AC 46 ms
61,056 KB
testcase_10 AC 52 ms
68,608 KB
testcase_11 AC 366 ms
246,312 KB
testcase_12 AC 834 ms
267,400 KB
testcase_13 AC 314 ms
206,180 KB
testcase_14 AC 378 ms
247,668 KB
testcase_15 AC 491 ms
105,600 KB
testcase_16 AC 176 ms
136,636 KB
testcase_17 AC 441 ms
263,540 KB
testcase_18 AC 413 ms
258,316 KB
testcase_19 AC 73 ms
83,328 KB
testcase_20 AC 195 ms
155,064 KB
testcase_21 AC 356 ms
244,652 KB
testcase_22 AC 468 ms
265,860 KB
testcase_23 AC 102 ms
92,800 KB
testcase_24 AC 230 ms
168,256 KB
testcase_25 AC 368 ms
248,024 KB
testcase_26 AC 145 ms
113,936 KB
testcase_27 AC 359 ms
243,488 KB
testcase_28 AC 213 ms
163,420 KB
testcase_29 AC 421 ms
255,308 KB
testcase_30 AC 459 ms
94,336 KB
testcase_31 AC 311 ms
200,808 KB
testcase_32 AC 270 ms
174,440 KB
testcase_33 AC 844 ms
266,536 KB
testcase_34 AC 842 ms
267,156 KB
testcase_35 AC 839 ms
267,044 KB
testcase_36 AC 847 ms
267,092 KB
testcase_37 AC 843 ms
266,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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)
S=[0]
for a in A:
    S.append(S[-1]+a)
ANS=0

for i in range(1<<M):
    w=0
    v=0
    for j in range(M):
        if i & (1<<j) != 0:
            w+=B[j]
            v+=C[j]

    if w<=W:
        v+=S[min(W-w,len(S)-1)]

        ANS=max(ANS,v)

print(ANS)

    
0