結果

問題 No.2730 Two Types Luggage
ユーザー ButterflvButterflv
提出日時 2024-04-24 13:54:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,166 ms / 2,000 ms
コード長 515 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 279,360 KB
最終ジャッジ日時 2024-04-24 13:54:42
合計ジャッジ時間 19,958 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 35 ms
52,096 KB
testcase_02 AC 52 ms
63,744 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 86 ms
84,096 KB
testcase_05 AC 49 ms
67,136 KB
testcase_06 AC 42 ms
60,160 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 35 ms
52,608 KB
testcase_09 AC 60 ms
71,424 KB
testcase_10 AC 62 ms
68,480 KB
testcase_11 AC 449 ms
253,544 KB
testcase_12 AC 1,023 ms
267,548 KB
testcase_13 AC 304 ms
211,728 KB
testcase_14 AC 371 ms
254,956 KB
testcase_15 AC 509 ms
107,496 KB
testcase_16 AC 204 ms
136,344 KB
testcase_17 AC 443 ms
264,120 KB
testcase_18 AC 409 ms
257,944 KB
testcase_19 AC 70 ms
84,556 KB
testcase_20 AC 195 ms
155,124 KB
testcase_21 AC 396 ms
251,400 KB
testcase_22 AC 450 ms
266,468 KB
testcase_23 AC 114 ms
94,976 KB
testcase_24 AC 254 ms
181,164 KB
testcase_25 AC 394 ms
255,932 KB
testcase_26 AC 130 ms
113,876 KB
testcase_27 AC 369 ms
250,632 KB
testcase_28 AC 215 ms
163,256 KB
testcase_29 AC 438 ms
255,956 KB
testcase_30 AC 764 ms
226,808 KB
testcase_31 AC 315 ms
206,904 KB
testcase_32 AC 285 ms
174,812 KB
testcase_33 AC 1,089 ms
278,328 KB
testcase_34 AC 1,166 ms
279,096 KB
testcase_35 AC 1,113 ms
279,224 KB
testcase_36 AC 1,071 ms
279,100 KB
testcase_37 AC 1,122 ms
279,360 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)
st=[0]
for i in range(len(A)): st.append(st[-1]+A[i])
set_=set()
for i in range(2**M):
  bit=[]
  temp=i
  for j in range(M):
    bit.append(temp&1)
    temp>>=1
  weight=0
  value=0
  for j in range(M):
    if bit[j]:
      weight+=B[j]
      value+=C[j]
  if weight>W: continue
  rest=W-weight
  value+=st[min(rest, len(st)-1)]
  set_.add(value)
print(max(set_))
0