結果

問題 No.2730 Two Types Luggage
ユーザー kusirakusirakusirakusira
提出日時 2024-04-04 18:14:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 1,138 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 268,716 KB
最終ジャッジ日時 2024-10-01 00:29:58
合計ジャッジ時間 19,681 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 48 ms
61,184 KB
testcase_03 AC 37 ms
52,252 KB
testcase_04 AC 60 ms
63,104 KB
testcase_05 AC 44 ms
60,800 KB
testcase_06 AC 41 ms
60,032 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 40 ms
52,552 KB
testcase_09 AC 45 ms
60,544 KB
testcase_10 AC 52 ms
69,248 KB
testcase_11 AC 388 ms
253,540 KB
testcase_12 AC 827 ms
266,784 KB
testcase_13 AC 317 ms
211,296 KB
testcase_14 AC 379 ms
255,420 KB
testcase_15 AC 505 ms
114,168 KB
testcase_16 AC 181 ms
136,344 KB
testcase_17 AC 445 ms
263,804 KB
testcase_18 AC 413 ms
257,664 KB
testcase_19 AC 73 ms
86,788 KB
testcase_20 AC 198 ms
154,848 KB
testcase_21 AC 355 ms
251,488 KB
testcase_22 AC 454 ms
266,228 KB
testcase_23 AC 107 ms
95,504 KB
testcase_24 AC 238 ms
168,836 KB
testcase_25 AC 370 ms
255,120 KB
testcase_26 AC 141 ms
114,612 KB
testcase_27 AC 359 ms
250,328 KB
testcase_28 AC 214 ms
163,496 KB
testcase_29 AC 422 ms
256,000 KB
testcase_30 AC 452 ms
96,864 KB
testcase_31 AC 317 ms
206,732 KB
testcase_32 AC 273 ms
174,576 KB
testcase_33 AC 800 ms
267,700 KB
testcase_34 AC 810 ms
268,252 KB
testcase_35 AC 804 ms
268,444 KB
testcase_36 AC 825 ms
268,716 KB
testcase_37 AC 812 ms
268,412 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()))

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

for i in range(m):
    if((1<=B[i]<=10**9)==False): print(-1)
    if((1<=C[i]<=10**9)==False): print(-1)
# 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