結果

問題 No.2730 Two Types Luggage
ユーザー KDKJKDKJ
提出日時 2024-05-09 12:46:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,227 ms / 2,000 ms
コード長 1,321 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 354,016 KB
最終ジャッジ日時 2024-05-09 12:46:36
合計ジャッジ時間 23,997 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
88,448 KB
testcase_01 AC 137 ms
88,704 KB
testcase_02 AC 139 ms
88,472 KB
testcase_03 AC 138 ms
88,696 KB
testcase_04 AC 137 ms
89,072 KB
testcase_05 AC 143 ms
88,840 KB
testcase_06 AC 140 ms
88,652 KB
testcase_07 AC 140 ms
88,676 KB
testcase_08 AC 146 ms
88,664 KB
testcase_09 AC 141 ms
89,184 KB
testcase_10 AC 151 ms
92,216 KB
testcase_11 AC 514 ms
268,752 KB
testcase_12 AC 586 ms
264,552 KB
testcase_13 AC 393 ms
211,696 KB
testcase_14 AC 489 ms
264,856 KB
testcase_15 AC 249 ms
136,168 KB
testcase_16 AC 261 ms
143,320 KB
testcase_17 AC 530 ms
260,996 KB
testcase_18 AC 539 ms
265,600 KB
testcase_19 AC 172 ms
105,008 KB
testcase_20 AC 303 ms
165,152 KB
testcase_21 AC 467 ms
263,156 KB
testcase_22 AC 561 ms
262,868 KB
testcase_23 AC 210 ms
123,160 KB
testcase_24 AC 328 ms
179,924 KB
testcase_25 AC 506 ms
265,688 KB
testcase_26 AC 226 ms
136,356 KB
testcase_27 AC 461 ms
262,864 KB
testcase_28 AC 324 ms
173,276 KB
testcase_29 AC 521 ms
262,760 KB
testcase_30 AC 805 ms
274,508 KB
testcase_31 AC 389 ms
209,736 KB
testcase_32 AC 365 ms
207,888 KB
testcase_33 AC 1,209 ms
335,768 KB
testcase_34 AC 1,227 ms
336,232 KB
testcase_35 AC 1,173 ms
354,016 KB
testcase_36 AC 1,162 ms
353,700 KB
testcase_37 AC 1,177 ms
344,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify
import sys
from collections import defaultdict, deque,Counter
from math import ceil, floor, sqrt, factorial,gcd
from itertools import permutations, combinations,product
from bisect import bisect_left, bisect_right
from copy import deepcopy
from functools import lru_cache #@lru_cache(maxsize=None)
from fractions import Fraction
from copy import deepcopy
sys.setrecursionlimit(10**6)
# input = sys.stdin.readline
vector1 = [[0, -1], [1, 0], [0, 1], [-1, 0]]
vector2 = [[0, 1], [1, 0], [-1, 0], [0, -1],
           [1,-1], [-1, 1], [1, 1], [-1, -1]]




def main():
    
    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)
    
    dp = defaultdict(int)
    dp[0] = 0
    for i in range(M):
        ndp = defaultdict(int)
        for key in dp.keys():
            ndp[key] = dp[key]
            if key + B[i] <= W:
                ndp[key + B[i]] = dp[key] + C[i]
        dp = ndp
        #print(dp,ndp)
    
    s = [0]
    for a in A:
        s.append(s[-1] + a)
    
    ans = 0
    for key in dp.keys():
        space = W - key
        
        ans = max(dp[key]+s[min(space,N)],ans)
    print(ans)
    


if __name__ == '__main__':
    main()
0