結果

問題 No.2730 Two Types Luggage
ユーザー detteiuudetteiuu
提出日時 2024-04-19 21:31:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 473 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 270,180 KB
最終ジャッジ日時 2024-10-11 14:07:23
合計ジャッジ時間 16,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 53 ms
60,416 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 73 ms
62,464 KB
testcase_05 AC 53 ms
60,288 KB
testcase_06 AC 49 ms
59,648 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 42 ms
51,968 KB
testcase_09 AC 54 ms
60,416 KB
testcase_10 AC 62 ms
68,608 KB
testcase_11 AC 456 ms
267,644 KB
testcase_12 AC 887 ms
266,568 KB
testcase_13 AC 368 ms
215,968 KB
testcase_14 AC 459 ms
269,076 KB
testcase_15 AC 518 ms
108,928 KB
testcase_16 AC 202 ms
137,788 KB
testcase_17 AC 517 ms
264,396 KB
testcase_18 AC 484 ms
256,828 KB
testcase_19 AC 85 ms
84,480 KB
testcase_20 AC 231 ms
157,256 KB
testcase_21 AC 441 ms
261,680 KB
testcase_22 AC 532 ms
266,360 KB
testcase_23 AC 119 ms
95,616 KB
testcase_24 AC 265 ms
171,468 KB
testcase_25 AC 450 ms
270,180 KB
testcase_26 AC 158 ms
115,608 KB
testcase_27 AC 426 ms
255,392 KB
testcase_28 AC 242 ms
166,356 KB
testcase_29 AC 484 ms
259,452 KB
testcase_30 AC 474 ms
97,536 KB
testcase_31 AC 363 ms
210,776 KB
testcase_32 AC 310 ms
178,288 KB
testcase_33 AC 903 ms
267,616 KB
testcase_34 AC 906 ms
268,128 KB
testcase_35 AC 906 ms
267,496 KB
testcase_36 AC 923 ms
267,736 KB
testcase_37 AC 909 ms
268,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, W = map(int, input().split())
A = sorted(list(map(int, input().split())), reverse=True)
B = list(map(int, input().split()))
C = list(map(int, input().split()))

cum = [0]
for i in range(N):
    cum.append(cum[-1]+A[i])

ans = 0
for i in range(1<<M):
    weight = 0
    value = 0
    for j in range(M):
        if 1<<j & i:
            weight += B[j]
            value += C[j]
    if weight <= W:
        value += cum[min(W-weight, N)]
        ans = max(ans, value)

print(ans)
0