結果

問題 No.2730 Two Types Luggage
ユーザー rikein12rikein12
提出日時 2024-05-02 19:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,224 ms / 2,000 ms
コード長 550 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 267,700 KB
最終ジャッジ日時 2024-05-02 19:37:12
合計ジャッジ時間 20,108 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 58 ms
52,480 KB
testcase_02 AC 61 ms
66,048 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 108 ms
75,904 KB
testcase_05 AC 56 ms
66,688 KB
testcase_06 AC 48 ms
61,056 KB
testcase_07 AC 38 ms
51,712 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 69 ms
72,448 KB
testcase_10 AC 54 ms
66,816 KB
testcase_11 AC 400 ms
206,056 KB
testcase_12 AC 952 ms
264,348 KB
testcase_13 AC 315 ms
174,344 KB
testcase_14 AC 391 ms
206,948 KB
testcase_15 AC 586 ms
107,520 KB
testcase_16 AC 197 ms
118,560 KB
testcase_17 AC 422 ms
231,984 KB
testcase_18 AC 411 ms
231,200 KB
testcase_19 AC 73 ms
78,720 KB
testcase_20 AC 186 ms
131,884 KB
testcase_21 AC 347 ms
204,048 KB
testcase_22 AC 458 ms
256,228 KB
testcase_23 AC 134 ms
92,032 KB
testcase_24 AC 233 ms
155,180 KB
testcase_25 AC 363 ms
207,944 KB
testcase_26 AC 133 ms
102,144 KB
testcase_27 AC 351 ms
202,860 KB
testcase_28 AC 208 ms
140,468 KB
testcase_29 AC 424 ms
232,528 KB
testcase_30 AC 847 ms
92,160 KB
testcase_31 AC 297 ms
169,268 KB
testcase_32 AC 269 ms
174,612 KB
testcase_33 AC 1,217 ms
266,808 KB
testcase_34 AC 1,216 ms
267,700 KB
testcase_35 AC 1,224 ms
264,632 KB
testcase_36 AC 1,220 ms
264,764 KB
testcase_37 AC 1,221 ms
264,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,W = list(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)
sA = [0]*(N+1)
for i in range(N):
    sA[i+1] = A[i] + sA[i]
ans = 0
for i in range(1<<M):
    s = bin(i + (1<<M))[3:]
    w = 0
    v = 0
    flag = True
    for j in range(M):
        if s[j] == "1":
            w += B[j]
            v += C[j]
            if w > W:
                flag = False
                break
    if flag:
        ans = max(v+sA[min(W-w, N)], ans)
print(ans)
0