結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
85,504 KB
testcase_01 AC 145 ms
85,632 KB
testcase_02 AC 169 ms
90,112 KB
testcase_03 AC 144 ms
85,760 KB
testcase_04 AC 181 ms
90,112 KB
testcase_05 AC 157 ms
89,984 KB
testcase_06 AC 161 ms
89,856 KB
testcase_07 AC 147 ms
85,632 KB
testcase_08 AC 145 ms
85,504 KB
testcase_09 AC 165 ms
89,984 KB
testcase_10 AC 170 ms
93,056 KB
testcase_11 AC 541 ms
265,824 KB
testcase_12 AC 1,019 ms
261,896 KB
testcase_13 AC 436 ms
206,428 KB
testcase_14 AC 536 ms
261,368 KB
testcase_15 AC 647 ms
136,960 KB
testcase_16 AC 286 ms
137,984 KB
testcase_17 AC 596 ms
258,400 KB
testcase_18 AC 599 ms
267,300 KB
testcase_19 AC 191 ms
105,344 KB
testcase_20 AC 330 ms
167,716 KB
testcase_21 AC 505 ms
252,940 KB
testcase_22 AC 624 ms
261,204 KB
testcase_23 AC 216 ms
108,160 KB
testcase_24 AC 367 ms
180,396 KB
testcase_25 AC 538 ms
262,208 KB
testcase_26 AC 241 ms
136,576 KB
testcase_27 AC 505 ms
251,652 KB
testcase_28 AC 339 ms
179,300 KB
testcase_29 AC 580 ms
267,628 KB
testcase_30 AC 610 ms
108,160 KB
testcase_31 AC 421 ms
203,572 KB
testcase_32 AC 407 ms
211,396 KB
testcase_33 AC 1,021 ms
262,740 KB
testcase_34 AC 1,030 ms
262,860 KB
testcase_35 AC 1,028 ms
262,992 KB
testcase_36 AC 1,019 ms
263,112 KB
testcase_37 AC 1,027 ms
262,732 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