結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 11:09:06
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,432 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 148,704 KB
最終ジャッジ日時 2024-11-25 01:40:28
合計ジャッジ時間 39,623 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,532 KB
testcase_01 AC 37 ms
52,672 KB
testcase_02 AC 45 ms
62,244 KB
testcase_03 AC 35 ms
52,840 KB
testcase_04 AC 34 ms
52,584 KB
testcase_05 AC 38 ms
52,304 KB
testcase_06 AC 46 ms
60,516 KB
testcase_07 AC 34 ms
52,628 KB
testcase_08 AC 35 ms
53,064 KB
testcase_09 AC 100 ms
76,044 KB
testcase_10 AC 93 ms
75,512 KB
testcase_11 AC 90 ms
75,788 KB
testcase_12 AC 475 ms
93,128 KB
testcase_13 AC 1,427 ms
119,436 KB
testcase_14 AC 313 ms
84,476 KB
testcase_15 AC 166 ms
77,820 KB
testcase_16 AC 228 ms
78,180 KB
testcase_17 AC 251 ms
78,576 KB
testcase_18 AC 37 ms
52,772 KB
testcase_19 AC 38 ms
53,816 KB
testcase_20 AC 37 ms
52,848 KB
testcase_21 AC 85 ms
75,508 KB
testcase_22 AC 83 ms
76,108 KB
testcase_23 AC 88 ms
75,844 KB
testcase_24 AC 1,871 ms
145,860 KB
testcase_25 AC 1,997 ms
148,704 KB
testcase_26 AC 1,633 ms
117,956 KB
testcase_27 AC 1,722 ms
116,532 KB
testcase_28 AC 682 ms
94,008 KB
testcase_29 AC 675 ms
94,456 KB
testcase_30 AC 36 ms
53,520 KB
testcase_31 AC 37 ms
52,872 KB
testcase_32 AC 82 ms
75,788 KB
testcase_33 AC 91 ms
75,908 KB
testcase_34 AC 87 ms
75,984 KB
testcase_35 AC 1,863 ms
134,788 KB
testcase_36 AC 1,894 ms
139,724 KB
testcase_37 TLE -
testcase_38 AC 1,981 ms
143,928 KB
testcase_39 TLE -
testcase_40 AC 1,695 ms
133,604 KB
testcase_41 AC 1,711 ms
130,852 KB
testcase_42 AC 1,548 ms
116,812 KB
testcase_43 AC 1,702 ms
116,764 KB
testcase_44 AC 1,542 ms
115,680 KB
testcase_45 AC 1,533 ms
115,652 KB
testcase_46 AC 788 ms
105,996 KB
testcase_47 AC 727 ms
96,396 KB
testcase_48 AC 698 ms
94,020 KB
testcase_49 AC 677 ms
97,472 KB
testcase_50 AC 825 ms
102,860 KB
testcase_51 AC 730 ms
101,548 KB
testcase_52 AC 578 ms
96,336 KB
testcase_53 AC 618 ms
100,744 KB
testcase_54 AC 137 ms
79,188 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