結果

問題 No.626 Randomized 01 Knapsack
ユーザー titiatitia
提出日時 2024-07-11 03:35:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-11 03:35:25
合計ジャッジ時間 4,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 38 ms
52,864 KB
testcase_02 AC 46 ms
60,032 KB
testcase_03 AC 48 ms
60,928 KB
testcase_04 AC 49 ms
62,336 KB
testcase_05 AC 48 ms
62,080 KB
testcase_06 AC 74 ms
70,656 KB
testcase_07 AC 74 ms
76,160 KB
testcase_08 AC 74 ms
76,132 KB
testcase_09 AC 88 ms
76,316 KB
testcase_10 AC 95 ms
76,672 KB
testcase_11 AC 219 ms
77,312 KB
testcase_12 WA -
testcase_13 AC 91 ms
76,936 KB
testcase_14 AC 130 ms
77,056 KB
testcase_15 AC 176 ms
76,920 KB
testcase_16 AC 143 ms
76,928 KB
testcase_17 AC 129 ms
76,676 KB
testcase_18 AC 162 ms
76,928 KB
testcase_19 WA -
testcase_20 AC 240 ms
77,052 KB
testcase_21 WA -
testcase_22 AC 192 ms
76,904 KB
testcase_23 WA -
testcase_24 AC 85 ms
76,928 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)<7:
    Q=[(0,0)]
    first=-1
    ANS=0
    M=M0
else:
    first,ANS,M=LASTS[-7]
    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