結果

問題 No.626 Randomized 01 Knapsack
ユーザー titiatitia
提出日時 2024-07-11 03:09:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 448 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 69,632 KB
最終ジャッジ日時 2024-07-11 03:09:21
合計ジャッジ時間 3,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 42 ms
52,224 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 53 ms
60,416 KB
testcase_09 WA -
testcase_10 AC 62 ms
64,256 KB
testcase_11 AC 76 ms
68,992 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 73 ms
69,120 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 73 ms
69,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())
X=[list(map(int,input().split())) for i in range(N)]

X.sort(reverse=True)
X.sort(key=lambda x:x[0]/x[1],reverse=True)

Y=X[:-20]
REST=X[-20:]

ANS=0
for v,w in Y:
    if w<=M:
        ANS+=v
        M-=w

Q=[(0,0)]

for v,w in REST:
    NQ=[]
    for x,y in Q:
        if w+y<=M:
            NQ.append((v+x,w+y))

    Q+=NQ

MAX=0
for x,y in Q:
    MAX=max(MAX,x)

print(ANS+MAX)
0