結果

問題 No.626 Randomized 01 Knapsack
ユーザー titiatitia
提出日時 2024-07-11 03:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 838 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-12-07 18:13:43
合計ジャッジ時間 5,911 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 43 ms
60,416 KB
testcase_03 AC 46 ms
61,184 KB
testcase_04 AC 51 ms
64,128 KB
testcase_05 AC 45 ms
61,696 KB
testcase_06 AC 86 ms
76,416 KB
testcase_07 AC 84 ms
76,068 KB
testcase_08 AC 111 ms
76,336 KB
testcase_09 AC 111 ms
76,992 KB
testcase_10 AC 171 ms
77,204 KB
testcase_11 AC 269 ms
78,724 KB
testcase_12 AC 302 ms
79,784 KB
testcase_13 AC 73 ms
77,160 KB
testcase_14 AC 135 ms
77,484 KB
testcase_15 AC 277 ms
78,720 KB
testcase_16 AC 264 ms
78,336 KB
testcase_17 AC 336 ms
79,728 KB
testcase_18 AC 291 ms
79,608 KB
testcase_19 AC 308 ms
79,360 KB
testcase_20 AC 416 ms
82,816 KB
testcase_21 AC 78 ms
76,876 KB
testcase_22 AC 212 ms
78,012 KB
testcase_23 AC 336 ms
80,000 KB
testcase_24 AC 58 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from operator import itemgetter

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)]

X=X[:first+500]

for i in range(first+1,len(X)):
    v,w=X[i]
    NQ=[]
    for x,y in Q:
        if w+y<=M:
            NQ.append((v+x,w+y))

    Q+=NQ

    Q.sort(key=itemgetter(1))

    Q2=[]
    for x,y in Q:
        if Q2 and Q2[-1][0]>=x:
            continue
        else:
            Q2.append((x,y))
    Q=Q2
        

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

print(ANS+MAX)


        
0