結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 59 ms
63,488 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 99 ms
83,968 KB
testcase_05 AC 62 ms
66,816 KB
testcase_06 AC 51 ms
59,904 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 42 ms
51,712 KB
testcase_09 AC 68 ms
71,424 KB
testcase_10 AC 61 ms
68,864 KB
testcase_11 AC 422 ms
253,284 KB
testcase_12 AC 942 ms
267,036 KB
testcase_13 AC 386 ms
211,084 KB
testcase_14 AC 454 ms
254,832 KB
testcase_15 AC 584 ms
107,136 KB
testcase_16 AC 224 ms
136,348 KB
testcase_17 AC 586 ms
263,596 KB
testcase_18 AC 486 ms
257,560 KB
testcase_19 AC 79 ms
84,480 KB
testcase_20 AC 229 ms
154,660 KB
testcase_21 AC 424 ms
251,656 KB
testcase_22 AC 534 ms
266,080 KB
testcase_23 AC 130 ms
94,720 KB
testcase_24 AC 271 ms
181,032 KB
testcase_25 AC 419 ms
255,040 KB
testcase_26 AC 146 ms
114,060 KB
testcase_27 AC 412 ms
250,248 KB
testcase_28 AC 229 ms
163,368 KB
testcase_29 AC 480 ms
255,568 KB
testcase_30 AC 909 ms
226,812 KB
testcase_31 AC 364 ms
206,520 KB
testcase_32 AC 312 ms
174,484 KB
testcase_33 AC 1,320 ms
278,328 KB
testcase_34 AC 1,285 ms
279,344 KB
testcase_35 AC 1,304 ms
279,096 KB
testcase_36 AC 1,271 ms
278,848 KB
testcase_37 AC 1,262 ms
278,712 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