結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:21:52
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,498 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 526,324 KB
最終ジャッジ日時 2024-11-25 03:13:00
合計ジャッジ時間 57,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
59,732 KB
testcase_01 AC 34 ms
316,956 KB
testcase_02 AC 47 ms
71,864 KB
testcase_03 AC 35 ms
316,892 KB
testcase_04 AC 36 ms
60,020 KB
testcase_05 AC 36 ms
317,208 KB
testcase_06 AC 46 ms
69,460 KB
testcase_07 AC 35 ms
317,496 KB
testcase_08 AC 37 ms
60,616 KB
testcase_09 AC 97 ms
76,664 KB
testcase_10 AC 79 ms
76,172 KB
testcase_11 AC 76 ms
76,084 KB
testcase_12 AC 721 ms
171,456 KB
testcase_13 MLE -
testcase_14 AC 437 ms
135,436 KB
testcase_15 AC 177 ms
85,712 KB
testcase_16 AC 239 ms
86,748 KB
testcase_17 AC 292 ms
83,020 KB
testcase_18 AC 36 ms
53,692 KB
testcase_19 AC 36 ms
53,504 KB
testcase_20 AC 35 ms
52,408 KB
testcase_21 AC 82 ms
77,080 KB
testcase_22 AC 73 ms
76,516 KB
testcase_23 AC 77 ms
76,680 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 939 ms
163,900 KB
testcase_29 AC 1,077 ms
168,416 KB
testcase_30 AC 36 ms
53,268 KB
testcase_31 AC 36 ms
52,872 KB
testcase_32 AC 73 ms
75,968 KB
testcase_33 AC 79 ms
76,796 KB
testcase_34 AC 79 ms
77,160 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 948 ms
171,504 KB
testcase_47 AC 1,062 ms
190,368 KB
testcase_48 AC 1,060 ms
166,492 KB
testcase_49 AC 1,002 ms
174,076 KB
testcase_50 AC 1,132 ms
166,956 KB
testcase_51 AC 1,021 ms
170,168 KB
testcase_52 AC 818 ms
114,512 KB
testcase_53 AC 810 ms
114,540 KB
testcase_54 AC 78 ms
341,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def maxb(x,y):
    if x>y:return x
    return y
def main1(n,k,pd):
    # 値段高い順にピザを買うかどうか決める。無料チケットを一枚得られる。
    # dp[i,j,s]:i枚目の購入判断が終わったとき、支払い総額がj円で無料チケットがs枚あるときの最大おいしさ
    # dp[i,j]:ある枚目の購入判断が終わったとき、支払い総額がi円で無料チケットがj枚あるときの最大おいしさ
    # チケットある状態では買わずにチケット使うのが最適なのでj<=2で考えればよい
    pd.sort(key=lambda x:x[0],reverse=True)
    dp0=[-1]*(k+1)
    dp1=[-1]*(k+1)
    dp0[0]=0
    price_list=set([0])
    price_list_add=set()
    for p,d in pd:
        update0=[]
        update1=[]
        for i in price_list:
            # チケットなし
            if dp0[i]>=0:
                if i+p<=k:
                    update1.append([i+p,dp0[i]+d])
                    price_list_add.add(i+p)
            # チケットあり
            if dp1[i]>=0:
                update0.append([i,dp1[i]+d])
        for ki,v in update0:
            dp0[ki]=maxb(dp0[ki],v)
        for ki,v in update1:
            dp1[ki]=maxb(dp1[ki],v)

        while price_list_add:
            price_list.add(price_list_add.pop())
    return maxb(max(dp0),max(dp1))

if __name__=='__main__':
    n,k=map(int,input().split())
    pd=[list(map(int,input().split())) for _ in range(n)]
    ret1=main1(n,k,pd)
    print(ret1)
0