結果

問題 No.2730 Two Types Luggage
ユーザー june19312june19312
提出日時 2024-04-19 23:31:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,515 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 269,604 KB
最終ジャッジ日時 2024-10-11 18:12:55
合計ジャッジ時間 20,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 55 ms
65,152 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 108 ms
75,904 KB
testcase_05 AC 62 ms
75,648 KB
testcase_06 AC 47 ms
61,440 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 66 ms
75,904 KB
testcase_10 AC 56 ms
68,992 KB
testcase_11 AC 445 ms
267,480 KB
testcase_12 AC 1,515 ms
266,772 KB
testcase_13 AC 361 ms
215,228 KB
testcase_14 AC 420 ms
268,288 KB
testcase_15 AC 1,087 ms
107,392 KB
testcase_16 AC 199 ms
140,800 KB
testcase_17 AC 463 ms
263,708 KB
testcase_18 AC 428 ms
257,404 KB
testcase_19 AC 76 ms
84,992 KB
testcase_20 AC 209 ms
157,348 KB
testcase_21 AC 380 ms
255,848 KB
testcase_22 AC 485 ms
266,012 KB
testcase_23 AC 150 ms
95,572 KB
testcase_24 AC 266 ms
183,832 KB
testcase_25 AC 405 ms
269,604 KB
testcase_26 AC 147 ms
115,504 KB
testcase_27 AC 399 ms
266,864 KB
testcase_28 AC 223 ms
168,736 KB
testcase_29 AC 442 ms
259,384 KB
testcase_30 AC 1,040 ms
95,488 KB
testcase_31 AC 332 ms
210,208 KB
testcase_32 AC 280 ms
174,404 KB
testcase_33 AC 1,454 ms
267,292 KB
testcase_34 AC 1,438 ms
268,180 KB
testcase_35 AC 1,437 ms
268,524 KB
testcase_36 AC 1,424 ms
268,320 KB
testcase_37 AC 1,433 ms
267,804 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()
A.reverse()
rui = []
for i,v in enumerate(A):
    if i == 0:
        rui.append(v)
    else:
        rui.append(rui[-1]+v)

rui = [0] + rui

all = 2**M
alllen = (all-1).bit_length()
ans = 0

for i in range(all):
    nex = bin(i)[2:].zfill(alllen)
    tmpvalue = 0
    tmpomosa = 0
    for ii,vv in enumerate(nex):
        if vv == "1":
            tmpvalue += C[ii]
            tmpomosa += B[ii]
    if tmpomosa > W:
        continue
    nokori = W-tmpomosa
    if nokori >= N:
        tmpvalue += rui[-1]
    else:
        tmpvalue += rui[nokori]
    ans = max(ans,tmpvalue)
print(ans)


0