結果

問題 No.2730 Two Types Luggage
ユーザー なえしらなえしら
提出日時 2024-08-13 23:32:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,848 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 268,388 KB
最終ジャッジ日時 2024-08-13 23:32:56
合計ジャッジ時間 23,858 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 73 ms
73,600 KB
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 202 ms
76,928 KB
testcase_05 AC 137 ms
76,808 KB
testcase_06 AC 50 ms
61,568 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 37 ms
52,736 KB
testcase_09 AC 132 ms
77,028 KB
testcase_10 AC 53 ms
66,944 KB
testcase_11 AC 348 ms
205,484 KB
testcase_12 AC 1,266 ms
264,720 KB
testcase_13 AC 292 ms
174,060 KB
testcase_14 AC 401 ms
221,684 KB
testcase_15 AC 850 ms
107,520 KB
testcase_16 AC 215 ms
122,164 KB
testcase_17 AC 420 ms
231,748 KB
testcase_18 AC 402 ms
231,076 KB
testcase_19 AC 70 ms
79,616 KB
testcase_20 AC 188 ms
132,240 KB
testcase_21 AC 377 ms
215,708 KB
testcase_22 AC 468 ms
255,980 KB
testcase_23 AC 257 ms
89,664 KB
testcase_24 AC 328 ms
156,104 KB
testcase_25 AC 349 ms
207,688 KB
testcase_26 AC 133 ms
102,448 KB
testcase_27 AC 453 ms
214,516 KB
testcase_28 AC 205 ms
140,440 KB
testcase_29 AC 404 ms
232,808 KB
testcase_30 AC 1,388 ms
89,984 KB
testcase_31 AC 350 ms
169,152 KB
testcase_32 AC 288 ms
174,568 KB
testcase_33 AC 1,848 ms
267,596 KB
testcase_34 AC 1,757 ms
268,388 KB
testcase_35 AC 1,820 ms
265,676 KB
testcase_36 AC 1,785 ms
264,904 KB
testcase_37 AC 1,735 ms
264,512 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)
P = [0]*(N+1)
for i, a in enumerate(A): P[i+1] = P[i] + a

ans = 0
for S in range(1<<M):
  wgt = sum(B[i] for i in range(M) if S>>i&1)
  if wgt > W: continue
  val = sum(C[i] for i in range(M) if S>>i&1)
  ans = max(ans, val + P[min(W - wgt, N)])

print(ans)
0