結果

問題 No.2730 Two Types Luggage
ユーザー hato336hato336
提出日時 2024-04-19 21:27:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,017 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 267,692 KB
最終ジャッジ日時 2024-10-11 13:59:58
合計ジャッジ時間 20,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
85,736 KB
testcase_01 AC 132 ms
85,888 KB
testcase_02 AC 156 ms
89,984 KB
testcase_03 AC 135 ms
85,504 KB
testcase_04 AC 175 ms
90,028 KB
testcase_05 AC 148 ms
89,984 KB
testcase_06 AC 145 ms
89,856 KB
testcase_07 AC 131 ms
85,632 KB
testcase_08 AC 129 ms
85,852 KB
testcase_09 AC 150 ms
89,892 KB
testcase_10 AC 154 ms
93,184 KB
testcase_11 AC 518 ms
265,724 KB
testcase_12 AC 1,002 ms
261,644 KB
testcase_13 AC 427 ms
206,148 KB
testcase_14 AC 517 ms
261,480 KB
testcase_15 AC 658 ms
136,832 KB
testcase_16 AC 264 ms
138,112 KB
testcase_17 AC 575 ms
258,536 KB
testcase_18 AC 556 ms
267,692 KB
testcase_19 AC 202 ms
105,080 KB
testcase_20 AC 350 ms
167,848 KB
testcase_21 AC 485 ms
252,724 KB
testcase_22 AC 600 ms
261,200 KB
testcase_23 AC 204 ms
108,264 KB
testcase_24 AC 356 ms
180,640 KB
testcase_25 AC 534 ms
262,336 KB
testcase_26 AC 239 ms
136,320 KB
testcase_27 AC 504 ms
251,732 KB
testcase_28 AC 339 ms
179,476 KB
testcase_29 AC 568 ms
267,496 KB
testcase_30 AC 593 ms
108,336 KB
testcase_31 AC 411 ms
203,724 KB
testcase_32 AC 397 ms
211,380 KB
testcase_33 AC 1,014 ms
262,864 KB
testcase_34 AC 1,015 ms
262,984 KB
testcase_35 AC 1,015 ms
263,116 KB
testcase_36 AC 1,017 ms
262,988 KB
testcase_37 AC 1,010 ms
262,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline
#n = int(input())
#
#alist = []
#s = input()
n,m,w = map(int,input().split())
alist = list(map(int,input().split()))
blist = list(map(int,input().split()))
clist = list(map(int,input().split()))
ans = 0
alist.sort(reverse=True)
alist = list(itertools.accumulate(alist))
for i in itertools.product([0,1],repeat=m):
    temp = 0
    we = 0
    for j in range(m):
        if i[j]:
            temp += clist[j]
            we += blist[j]
    res = w - we
    if res >= n:
        temp += alist[-1]
    elif res >= 1:
        temp += alist[res-1]
    if we <= w:
        ans = max(ans,temp)

print(ans)
0