結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:11:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,612 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 315,392 KB
最終ジャッジ日時 2024-11-25 02:58:02
合計ジャッジ時間 71,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,320 KB
testcase_01 AC 41 ms
228,032 KB
testcase_02 AC 60 ms
71,552 KB
testcase_03 AC 41 ms
252,304 KB
testcase_04 AC 41 ms
59,264 KB
testcase_05 AC 41 ms
59,252 KB
testcase_06 AC 57 ms
71,168 KB
testcase_07 AC 42 ms
216,828 KB
testcase_08 AC 48 ms
64,768 KB
testcase_09 AC 141 ms
240,680 KB
testcase_10 AC 108 ms
82,148 KB
testcase_11 AC 101 ms
277,252 KB
testcase_12 AC 1,301 ms
137,540 KB
testcase_13 TLE -
testcase_14 AC 651 ms
114,688 KB
testcase_15 AC 291 ms
283,844 KB
testcase_16 AC 405 ms
88,092 KB
testcase_17 AC 521 ms
281,640 KB
testcase_18 AC 41 ms
59,008 KB
testcase_19 AC 41 ms
256,356 KB
testcase_20 AC 41 ms
59,008 KB
testcase_21 AC 113 ms
244,568 KB
testcase_22 AC 99 ms
82,032 KB
testcase_23 AC 111 ms
239,780 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,691 ms
133,632 KB
testcase_29 AC 1,749 ms
315,392 KB
testcase_30 AC 38 ms
59,008 KB
testcase_31 AC 38 ms
53,888 KB
testcase_32 AC 88 ms
76,928 KB
testcase_33 AC 105 ms
77,056 KB
testcase_34 AC 105 ms
77,100 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 1,710 ms
134,016 KB
testcase_47 AC 1,771 ms
143,232 KB
testcase_48 AC 1,930 ms
131,072 KB
testcase_49 AC 1,837 ms
133,760 KB
testcase_50 AC 1,793 ms
129,280 KB
testcase_51 AC 1,869 ms
131,712 KB
testcase_52 AC 1,379 ms
98,048 KB
testcase_53 AC 1,369 ms
98,176 KB
testcase_54 AC 99 ms
240,932 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()
    from collections import defaultdict
    for p,d in pd:
        update0=defaultdict(lambda:-1)
        update1=defaultdict(lambda:-1)
        for i in price_list:
            # チケットなし
            if dp0[i]>=0:
                if i+p<=k:
                    update1[i+p]=maxb(update1[i+p],dp0[i]+d)
                    price_list_add.add(i+p)
            # チケットあり
            if dp1[i]>=0:
                update0[i]=maxb(update0[i],dp1[i]+d)
        for ki,v in update0.items():
            dp0[ki]=maxb(dp0[ki],v)
        for ki,v in update1.items():
            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