結果

問題 No.2730 Two Types Luggage
ユーザー kusirakusirakusirakusira
提出日時 2024-03-14 14:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 965 ms / 2,000 ms
コード長 885 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 268,892 KB
最終ジャッジ日時 2024-09-29 23:42:16
合計ジャッジ時間 20,570 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 49 ms
61,312 KB
testcase_03 AC 39 ms
51,584 KB
testcase_04 AC 63 ms
62,848 KB
testcase_05 AC 48 ms
60,160 KB
testcase_06 AC 48 ms
59,392 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 39 ms
52,096 KB
testcase_09 AC 50 ms
60,544 KB
testcase_10 AC 57 ms
68,224 KB
testcase_11 AC 438 ms
253,676 KB
testcase_12 AC 965 ms
267,068 KB
testcase_13 AC 334 ms
211,364 KB
testcase_14 AC 411 ms
254,856 KB
testcase_15 AC 480 ms
107,520 KB
testcase_16 AC 192 ms
135,936 KB
testcase_17 AC 483 ms
263,716 KB
testcase_18 AC 442 ms
258,220 KB
testcase_19 AC 78 ms
84,096 KB
testcase_20 AC 215 ms
154,912 KB
testcase_21 AC 386 ms
251,304 KB
testcase_22 AC 499 ms
266,100 KB
testcase_23 AC 109 ms
94,992 KB
testcase_24 AC 248 ms
168,568 KB
testcase_25 AC 401 ms
254,948 KB
testcase_26 AC 149 ms
113,868 KB
testcase_27 AC 385 ms
250,016 KB
testcase_28 AC 225 ms
163,480 KB
testcase_29 AC 461 ms
255,472 KB
testcase_30 AC 441 ms
96,724 KB
testcase_31 AC 334 ms
207,448 KB
testcase_32 AC 286 ms
174,484 KB
testcase_33 AC 872 ms
267,348 KB
testcase_34 AC 868 ms
268,200 KB
testcase_35 AC 872 ms
268,200 KB
testcase_36 AC 874 ms
268,892 KB
testcase_37 AC 877 ms
268,044 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