結果

問題 No.2730 Two Types Luggage
ユーザー ntudantuda
提出日時 2024-04-20 10:28:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 912 ms / 2,000 ms
コード長 536 bytes
コンパイル時間 469 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 266,960 KB
最終ジャッジ日時 2024-10-12 06:01:00
合計ジャッジ時間 17,333 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 48 ms
61,056 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 64 ms
63,488 KB
testcase_05 AC 47 ms
60,416 KB
testcase_06 AC 43 ms
59,648 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 47 ms
60,928 KB
testcase_10 AC 56 ms
66,688 KB
testcase_11 AC 398 ms
205,932 KB
testcase_12 AC 548 ms
264,488 KB
testcase_13 AC 304 ms
174,232 KB
testcase_14 AC 357 ms
206,860 KB
testcase_15 AC 161 ms
107,392 KB
testcase_16 AC 171 ms
118,440 KB
testcase_17 AC 418 ms
231,748 KB
testcase_18 AC 406 ms
231,024 KB
testcase_19 AC 71 ms
79,104 KB
testcase_20 AC 191 ms
132,104 KB
testcase_21 AC 344 ms
204,060 KB
testcase_22 AC 467 ms
255,976 KB
testcase_23 AC 103 ms
89,728 KB
testcase_24 AC 215 ms
142,392 KB
testcase_25 AC 350 ms
207,692 KB
testcase_26 AC 134 ms
102,400 KB
testcase_27 AC 342 ms
202,844 KB
testcase_28 AC 203 ms
140,484 KB
testcase_29 AC 403 ms
232,836 KB
testcase_30 AC 450 ms
92,288 KB
testcase_31 AC 305 ms
169,420 KB
testcase_32 AC 281 ms
174,600 KB
testcase_33 AC 851 ms
266,188 KB
testcase_34 AC 823 ms
266,960 KB
testcase_35 AC 811 ms
264,264 KB
testcase_36 AC 833 ms
264,232 KB
testcase_37 AC 912 ms
264,252 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)
AA = [0] * (N + 1)
for i in range(1, N + 1):
    AA[i] = AA[i - 1] + A[i - 1]
ans = 0

for i in range(1 << M):
    x = i
    w = 0
    v = 0
    for i in range(M):
        if x & 1:
            w += B[i]
            v += C[i]
            if w > W:
                break
        x >>= 1
    else:
        v += AA[min(W - w, N)]
        ans = max(ans, v)

print(ans)
0