結果

問題 No.626 Randomized 01 Knapsack
ユーザー titiatitia
提出日時 2024-07-11 03:39:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 846 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 116,864 KB
最終ジャッジ日時 2024-07-11 03:39:30
合計ジャッジ時間 22,209 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 43 ms
52,736 KB
testcase_02 AC 48 ms
60,160 KB
testcase_03 AC 50 ms
61,312 KB
testcase_04 AC 56 ms
65,024 KB
testcase_05 AC 70 ms
61,440 KB
testcase_06 AC 91 ms
75,776 KB
testcase_07 AC 115 ms
76,160 KB
testcase_08 AC 166 ms
76,160 KB
testcase_09 AC 195 ms
76,416 KB
testcase_10 AC 415 ms
77,952 KB
testcase_11 AC 1,536 ms
87,808 KB
testcase_12 AC 1,921 ms
96,384 KB
testcase_13 AC 98 ms
76,684 KB
testcase_14 AC 448 ms
77,824 KB
testcase_15 AC 1,500 ms
89,340 KB
testcase_16 AC 1,539 ms
89,088 KB
testcase_17 AC 1,948 ms
97,468 KB
testcase_18 AC 1,848 ms
94,128 KB
testcase_19 AC 1,958 ms
97,812 KB
testcase_20 TLE -
testcase_21 AC 128 ms
76,664 KB
testcase_22 AC 1,008 ms
82,048 KB
testcase_23 TLE -
testcase_24 AC 85 ms
76,800 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(reverse=True)
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)<80:
    Q=[(0,0)]
    first=-1
    ANS=0
    M=M0
else:
    first,ANS,M=LASTS[-80]
    Q=[(0,0)]
    
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