結果

問題 No.626 Randomized 01 Knapsack
ユーザー titiatitia
提出日時 2024-07-11 03:55:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 808 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 87,784 KB
最終ジャッジ日時 2024-07-11 03:55:28
合計ジャッジ時間 8,786 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
58,240 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 47 ms
63,488 KB
testcase_03 AC 46 ms
61,184 KB
testcase_04 AC 58 ms
68,864 KB
testcase_05 AC 44 ms
60,800 KB
testcase_06 AC 112 ms
76,096 KB
testcase_07 AC 132 ms
76,416 KB
testcase_08 AC 202 ms
76,288 KB
testcase_09 AC 231 ms
76,876 KB
testcase_10 AC 587 ms
77,056 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter
from bisect import bisect

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

M0=M

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

ANS=0
LASTS=[]
for i in range(len(X)):
    v,w=X[i]
    if w<=M:
        ANS+=v
        M-=w
        LASTS.append((i,ANS,M))

if len(LASTS)<75:
    Q=[(0,0)]
    first=-1
    ANS=0
    M=M0
else:
    first,ANS,M=LASTS[-75]
    Q=[(0,0)]
    
for i in range(first+1,len(X)):
    v,w=X[i]
    NQ=[]
    for x,y in Q:
        if w+x<=M:
            bx=bisect(Q,(w+x,1<<60))
            if Q[bx-1][1]<v+y:
                NQ.append((w+x,v+y))

    #print(Q,v,w)

    Q+=NQ
    Q.sort(key=itemgetter(0))

        

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

print(ANS+MAX)


        
0