結果

問題 No.2730 Two Types Luggage
ユーザー イルカイルカ
提出日時 2024-06-13 05:06:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 936 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 266,144 KB
最終ジャッジ日時 2024-06-13 05:07:11
合計ジャッジ時間 21,450 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 54 ms
62,848 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 68 ms
68,352 KB
testcase_05 AC 48 ms
61,184 KB
testcase_06 AC 44 ms
59,392 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 47 ms
62,464 KB
testcase_10 AC 53 ms
68,992 KB
testcase_11 AC 415 ms
243,256 KB
testcase_12 AC 512 ms
263,168 KB
testcase_13 AC 332 ms
219,640 KB
testcase_14 AC 415 ms
244,308 KB
testcase_15 AC 162 ms
108,672 KB
testcase_16 AC 180 ms
140,228 KB
testcase_17 AC 479 ms
265,244 KB
testcase_18 AC 472 ms
257,720 KB
testcase_19 AC 78 ms
85,632 KB
testcase_20 AC 209 ms
159,460 KB
testcase_21 AC 391 ms
252,024 KB
testcase_22 AC 521 ms
264,276 KB
testcase_23 AC 118 ms
96,512 KB
testcase_24 AC 254 ms
183,836 KB
testcase_25 AC 412 ms
241,824 KB
testcase_26 AC 150 ms
116,692 KB
testcase_27 AC 416 ms
251,404 KB
testcase_28 AC 233 ms
171,300 KB
testcase_29 AC 448 ms
257,596 KB
testcase_30 AC 490 ms
123,364 KB
testcase_31 AC 330 ms
214,676 KB
testcase_32 AC 279 ms
178,548 KB
testcase_33 AC 853 ms
265,124 KB
testcase_34 AC 873 ms
266,144 KB
testcase_35 AC 936 ms
263,840 KB
testcase_36 AC 885 ms
263,848 KB
testcase_37 AC 911 ms
263,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

# M<=20よりMについて全探索
N, M, W = map(int, input().split())
A = sorted(list(map(int, input().split())))[::-1]
As = list(itertools.accumulate(A))
B = list(map(int, input().split()))
C = list(map(int, input().split()))
cnt = []

for i in range(2**M):
    ws = 0
    ps = 0
    flag = True
    for j in range(M):
        if ((i >> j) & 1):
            ws += B[j]
            ps += C[j]
            if ws > W:
                flag = False
                break
    if flag:
        if ws == W:
            cnt.append(ps)
        else:
            remaining_weight = W - ws
            if remaining_weight - 1 < len(A):
                cnt.append(ps + As[remaining_weight - 1])
            else:
                cnt.append(ps + As[-1])

print(max(cnt))
"🐬"
0