結果

問題 No.2730 Two Types Luggage
ユーザー ああいいああいい
提出日時 2024-05-23 19:37:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 271,700 KB
最終ジャッジ日時 2024-05-23 19:37:28
合計ジャッジ時間 15,404 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
52,644 KB
testcase_01 AC 31 ms
53,792 KB
testcase_02 AC 32 ms
53,216 KB
testcase_03 AC 31 ms
52,540 KB
testcase_04 AC 41 ms
67,412 KB
testcase_05 AC 36 ms
60,504 KB
testcase_06 AC 31 ms
52,536 KB
testcase_07 AC 30 ms
52,000 KB
testcase_08 AC 30 ms
52,960 KB
testcase_09 AC 37 ms
62,488 KB
testcase_10 AC 43 ms
66,916 KB
testcase_11 AC 478 ms
206,348 KB
testcase_12 AC 446 ms
254,988 KB
testcase_13 AC 274 ms
174,896 KB
testcase_14 AC 311 ms
207,300 KB
testcase_15 AC 110 ms
109,152 KB
testcase_16 AC 140 ms
117,592 KB
testcase_17 AC 365 ms
231,688 KB
testcase_18 AC 351 ms
230,936 KB
testcase_19 AC 61 ms
79,296 KB
testcase_20 AC 166 ms
132,128 KB
testcase_21 AC 292 ms
203,852 KB
testcase_22 AC 445 ms
255,768 KB
testcase_23 AC 78 ms
94,352 KB
testcase_24 AC 185 ms
142,120 KB
testcase_25 AC 300 ms
207,364 KB
testcase_26 AC 116 ms
102,472 KB
testcase_27 AC 293 ms
202,620 KB
testcase_28 AC 179 ms
140,600 KB
testcase_29 AC 366 ms
232,692 KB
testcase_30 AC 177 ms
163,288 KB
testcase_31 AC 258 ms
168,640 KB
testcase_32 AC 236 ms
178,284 KB
testcase_33 AC 469 ms
271,192 KB
testcase_34 AC 534 ms
269,780 KB
testcase_35 AC 455 ms
271,340 KB
testcase_36 AC 532 ms
270,684 KB
testcase_37 AC 463 ms
271,700 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()))
S = [0] * N
A.sort(reverse = True)
S[0] = A[0]
for i in range(1,N):
    S[i] = A[i] + S[i-1]

l = [(0,0)]
for i in range(M):
    ll = []
    b = B[i]
    c = C[i]
    for w,cc in l:
        if w + b <= W:
            ll.append((w + b,cc + c))
    l += ll
ans = 0
for w,c in l:
    u = W - w
    tmp = c
    if 1 <= u <= N:
        tmp += S[u-1]
        #if tmp > ans:ans = tmp
    elif u == 0:
        pass
    else:
        tmp += S[-1]
    if tmp > ans:ans = tmp
print(ans)
        
    
0