結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 11:09:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,973 ms / 2,000 ms
コード長 1,432 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 148,992 KB
最終ジャッジ日時 2024-05-03 21:12:12
合計ジャッジ時間 37,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,124 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 51 ms
60,672 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 36 ms
52,224 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 46 ms
60,032 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
53,120 KB
testcase_09 AC 113 ms
76,288 KB
testcase_10 AC 99 ms
75,796 KB
testcase_11 AC 99 ms
75,776 KB
testcase_12 AC 455 ms
93,200 KB
testcase_13 AC 1,383 ms
119,808 KB
testcase_14 AC 292 ms
84,004 KB
testcase_15 AC 179 ms
78,104 KB
testcase_16 AC 228 ms
78,080 KB
testcase_17 AC 259 ms
79,224 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 36 ms
52,096 KB
testcase_20 AC 37 ms
52,096 KB
testcase_21 AC 89 ms
76,160 KB
testcase_22 AC 93 ms
76,032 KB
testcase_23 AC 89 ms
75,760 KB
testcase_24 AC 1,782 ms
145,664 KB
testcase_25 AC 1,898 ms
148,992 KB
testcase_26 AC 1,549 ms
118,016 KB
testcase_27 AC 1,590 ms
116,296 KB
testcase_28 AC 691 ms
94,336 KB
testcase_29 AC 684 ms
94,296 KB
testcase_30 AC 39 ms
52,224 KB
testcase_31 AC 36 ms
52,224 KB
testcase_32 AC 88 ms
75,520 KB
testcase_33 AC 97 ms
76,032 KB
testcase_34 AC 93 ms
75,976 KB
testcase_35 AC 1,726 ms
134,912 KB
testcase_36 AC 1,761 ms
139,904 KB
testcase_37 AC 1,909 ms
132,352 KB
testcase_38 AC 1,781 ms
144,256 KB
testcase_39 AC 1,973 ms
145,152 KB
testcase_40 AC 1,670 ms
133,120 KB
testcase_41 AC 1,611 ms
130,560 KB
testcase_42 AC 1,455 ms
116,812 KB
testcase_43 AC 1,572 ms
116,992 KB
testcase_44 AC 1,446 ms
115,840 KB
testcase_45 AC 1,482 ms
116,048 KB
testcase_46 AC 707 ms
105,984 KB
testcase_47 AC 703 ms
96,460 KB
testcase_48 AC 677 ms
93,824 KB
testcase_49 AC 672 ms
97,408 KB
testcase_50 AC 803 ms
102,784 KB
testcase_51 AC 705 ms
102,016 KB
testcase_52 AC 541 ms
96,504 KB
testcase_53 AC 577 ms
101,120 KB
testcase_54 AC 146 ms
79,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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])
    for _,(p,d) in enumerate(pd):
        ndp0=[-1]*(k+1)
        ndp1=[-1]*(k+1)
        price_list_add=set()
        for i in price_list:
            # チケットなし
            if dp0[i]>=0:
                if i+p<=k:
                    ndp1[i+p]=max(ndp1[i+p],dp0[i]+d)
                    price_list_add.add(i+p)
                ndp0[i]=max(ndp0[i],dp0[i])
            # チケットあり
            if dp1[i]>=0:
                ndp0[i]=max(ndp0[i],dp1[i]+d)
                ndp1[i]=max(ndp1[i],dp1[i])

        dp0=ndp0
        dp1=ndp1
        for x in price_list_add:
            price_list.add(x)
    return max(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