結果

問題 No.2730 Two Types Luggage
ユーザー flygonflygon
提出日時 2024-04-19 21:29:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 981 ms / 2,000 ms
コード長 685 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 271,368 KB
最終ジャッジ日時 2024-10-11 14:03:17
合計ジャッジ時間 17,277 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,400 KB
testcase_01 AC 49 ms
54,144 KB
testcase_02 AC 60 ms
63,232 KB
testcase_03 AC 48 ms
54,400 KB
testcase_04 AC 76 ms
65,280 KB
testcase_05 AC 58 ms
62,976 KB
testcase_06 AC 55 ms
61,696 KB
testcase_07 AC 47 ms
54,528 KB
testcase_08 AC 47 ms
54,528 KB
testcase_09 AC 60 ms
63,104 KB
testcase_10 AC 68 ms
70,656 KB
testcase_11 AC 431 ms
252,904 KB
testcase_12 AC 898 ms
267,696 KB
testcase_13 AC 369 ms
212,312 KB
testcase_14 AC 449 ms
271,368 KB
testcase_15 AC 524 ms
116,172 KB
testcase_16 AC 199 ms
140,572 KB
testcase_17 AC 546 ms
264,024 KB
testcase_18 AC 475 ms
260,472 KB
testcase_19 AC 89 ms
86,272 KB
testcase_20 AC 222 ms
160,660 KB
testcase_21 AC 415 ms
251,304 KB
testcase_22 AC 546 ms
268,328 KB
testcase_23 AC 127 ms
95,232 KB
testcase_24 AC 270 ms
174,012 KB
testcase_25 AC 434 ms
254,276 KB
testcase_26 AC 158 ms
117,500 KB
testcase_27 AC 456 ms
250,636 KB
testcase_28 AC 261 ms
168,052 KB
testcase_29 AC 528 ms
258,044 KB
testcase_30 AC 449 ms
95,488 KB
testcase_31 AC 379 ms
207,556 KB
testcase_32 AC 325 ms
194,248 KB
testcase_33 AC 925 ms
269,928 KB
testcase_34 AC 886 ms
270,824 KB
testcase_35 AC 929 ms
269,684 KB
testcase_36 AC 981 ms
269,920 KB
testcase_37 AC 933 ms
269,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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()
a = a[::-1]
cnt = [0]
for i in range(n):
    cnt.append(cnt[-1] + a[i])

ans = 0
for bit in range(1<<m):
    ws = 0
    vs = 0
    for i in range(m):
        if (bit>>i) & 1:
            ws += b[i]
            vs += c[i]
        
    if ws <= w:
        ans = max(ans, vs+cnt[min(len(cnt)-1,w-ws)])
    
print(ans)
0