結果

問題 No.2730 Two Types Luggage
ユーザー i_takui_taku
提出日時 2024-04-20 15:41:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 870 ms / 2,000 ms
コード長 474 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 267,120 KB
最終ジャッジ日時 2024-10-12 11:23:34
合計ジャッジ時間 16,674 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 52 ms
60,800 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 67 ms
62,592 KB
testcase_05 AC 52 ms
60,160 KB
testcase_06 AC 47 ms
59,520 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 53 ms
60,544 KB
testcase_10 AC 58 ms
66,432 KB
testcase_11 AC 389 ms
206,092 KB
testcase_12 AC 870 ms
264,380 KB
testcase_13 AC 486 ms
174,136 KB
testcase_14 AC 406 ms
207,380 KB
testcase_15 AC 478 ms
107,520 KB
testcase_16 AC 178 ms
118,208 KB
testcase_17 AC 490 ms
231,472 KB
testcase_18 AC 484 ms
231,008 KB
testcase_19 AC 74 ms
78,976 KB
testcase_20 AC 213 ms
131,908 KB
testcase_21 AC 375 ms
203,820 KB
testcase_22 AC 529 ms
256,184 KB
testcase_23 AC 198 ms
89,856 KB
testcase_24 AC 254 ms
142,160 KB
testcase_25 AC 411 ms
207,332 KB
testcase_26 AC 136 ms
102,400 KB
testcase_27 AC 377 ms
203,036 KB
testcase_28 AC 237 ms
140,240 KB
testcase_29 AC 416 ms
232,768 KB
testcase_30 AC 435 ms
92,420 KB
testcase_31 AC 293 ms
169,184 KB
testcase_32 AC 276 ms
174,324 KB
testcase_33 AC 827 ms
266,316 KB
testcase_34 AC 860 ms
267,120 KB
testcase_35 AC 847 ms
264,160 KB
testcase_36 AC 858 ms
264,360 KB
testcase_37 AC 849 ms
264,016 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(reverse=True)
cum_sum = [0] * (N + 1)
for i in range(N):
    cum_sum[i + 1] = cum_sum[i] + A[i]

ans = 0
for i in range(1 << M):
    w = v = 0
    for j in range(M):
        if i >> j & 1:
            w += B[j]
            v += C[j]
    if w > W:
        continue
    ans = max(ans, v + cum_sum[min(N, W - w)])
print(ans)
0