結果

問題 No.2730 Two Types Luggage
ユーザー kusirakusirakusirakusira
提出日時 2024-03-14 14:06:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 782 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 268,632 KB
最終ジャッジ日時 2024-09-29 23:42:32
合計ジャッジ時間 15,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,440 KB
testcase_01 AC 35 ms
52,812 KB
testcase_02 AC 44 ms
62,388 KB
testcase_03 AC 35 ms
52,272 KB
testcase_04 AC 57 ms
64,316 KB
testcase_05 AC 42 ms
60,492 KB
testcase_06 AC 40 ms
61,200 KB
testcase_07 AC 38 ms
52,284 KB
testcase_08 AC 33 ms
52,128 KB
testcase_09 AC 43 ms
61,084 KB
testcase_10 AC 47 ms
69,484 KB
testcase_11 AC 383 ms
253,396 KB
testcase_12 AC 780 ms
267,208 KB
testcase_13 AC 321 ms
212,856 KB
testcase_14 AC 387 ms
254,924 KB
testcase_15 AC 434 ms
107,508 KB
testcase_16 AC 177 ms
135,940 KB
testcase_17 AC 440 ms
263,768 KB
testcase_18 AC 443 ms
257,432 KB
testcase_19 AC 70 ms
84,424 KB
testcase_20 AC 191 ms
155,264 KB
testcase_21 AC 361 ms
251,508 KB
testcase_22 AC 450 ms
266,316 KB
testcase_23 AC 98 ms
95,324 KB
testcase_24 AC 218 ms
168,184 KB
testcase_25 AC 354 ms
254,696 KB
testcase_26 AC 130 ms
114,020 KB
testcase_27 AC 376 ms
250,776 KB
testcase_28 AC 208 ms
163,368 KB
testcase_29 AC 414 ms
255,844 KB
testcase_30 AC 439 ms
97,028 KB
testcase_31 AC 295 ms
206,968 KB
testcase_32 AC 255 ms
174,220 KB
testcase_33 AC 782 ms
267,384 KB
testcase_34 AC 769 ms
268,632 KB
testcase_35 AC 777 ms
268,200 KB
testcase_36 AC 772 ms
268,616 KB
testcase_37 AC 763 ms
268,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力
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()))

# step2で行う処理のために前計算(Aを降順に並び替え累積和を取る。)
A.sort(reverse = True)
CA = [0]
for i in range(n):
    CA.append(CA[-1] + A[i])

# step1. タイプBの荷物の選び方を全探索する。(bit全探索) 
ans = 0
for i in range(1<<m):
    # 選んだ荷物の総重量cと総価値v
    c = 0
    v = 0
    for j in range(m):
        # 選ぶ
        if(i >> j & 1):
            c += B[j]
            v += C[j]

    # タイプBのだけで総重量を超えたらパスする。
    if(c > w): continue
    # step2. ナップザックの残りの容量でタイプAの荷物を詰めれるだけ詰める。
    v += CA[min(w-c,  n)]
    # 答えの更新
    ans = max(ans,v)

# 出力
print(ans)
0