結果

問題 No.2730 Two Types Luggage
ユーザー budoubudou
提出日時 2024-04-20 07:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 918 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 271,564 KB
最終ジャッジ日時 2024-10-12 03:04:36
合計ジャッジ時間 20,822 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
67,288 KB
testcase_01 AC 60 ms
66,836 KB
testcase_02 AC 65 ms
71,188 KB
testcase_03 AC 59 ms
68,608 KB
testcase_04 AC 93 ms
78,196 KB
testcase_05 AC 73 ms
74,560 KB
testcase_06 AC 63 ms
69,284 KB
testcase_07 AC 59 ms
68,472 KB
testcase_08 AC 59 ms
67,920 KB
testcase_09 AC 68 ms
75,076 KB
testcase_10 AC 74 ms
79,648 KB
testcase_11 AC 400 ms
244,148 KB
testcase_12 AC 890 ms
269,348 KB
testcase_13 AC 346 ms
217,488 KB
testcase_14 AC 420 ms
245,768 KB
testcase_15 AC 537 ms
130,680 KB
testcase_16 AC 216 ms
148,008 KB
testcase_17 AC 491 ms
267,468 KB
testcase_18 AC 450 ms
265,424 KB
testcase_19 AC 105 ms
91,388 KB
testcase_20 AC 225 ms
166,672 KB
testcase_21 AC 382 ms
220,888 KB
testcase_22 AC 513 ms
269,108 KB
testcase_23 AC 137 ms
94,056 KB
testcase_24 AC 275 ms
166,108 KB
testcase_25 AC 406 ms
245,400 KB
testcase_26 AC 163 ms
122,680 KB
testcase_27 AC 387 ms
219,944 KB
testcase_28 AC 240 ms
148,788 KB
testcase_29 AC 451 ms
267,312 KB
testcase_30 AC 494 ms
94,176 KB
testcase_31 AC 332 ms
216,220 KB
testcase_32 AC 311 ms
198,620 KB
testcase_33 AC 886 ms
271,564 KB
testcase_34 AC 893 ms
269,732 KB
testcase_35 AC 893 ms
268,864 KB
testcase_36 AC 918 ms
268,812 KB
testcase_37 AC 889 ms
268,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing
import sys
from collections import defaultdict
input = lambda: sys.stdin.readline().strip()
inf = 10**18
mod = 998244353
# import pypyjit
# pypyjit.set_param('max_unroll_recursion=-1')
# sys.setrecursionlimit(10**6)

def solve():
  N, M, W = map(int, input().split())
  A = list(map(int, input().split()))
  A.sort(reverse=True)
  acc = [0]
  for a in A:
    acc.append(a+acc[-1])

  B = list(map(int, input().split()))
  C = list(map(int, input().split()))
  ans = 0
  for s in range(1<<M):
    v = w = 0
    for i in range(M):
      if (s >> i)&1:
        v += C[i]
        w += B[i]
    if w > W:
      continue
    v += acc[min(N, W-w)]
    ans = max(ans, v)
  print(ans)
def main():
  t = 1
  for _ in range(t):
    solve()
main()
0