結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:20:52
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,365 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 143,660 KB
最終ジャッジ日時 2024-11-25 03:11:19
合計ジャッジ時間 57,835 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,308 KB
testcase_01 AC 36 ms
141,068 KB
testcase_02 AC 48 ms
69,308 KB
testcase_03 AC 39 ms
143,660 KB
testcase_04 AC 37 ms
59,796 KB
testcase_05 AC 37 ms
143,272 KB
testcase_06 AC 46 ms
67,340 KB
testcase_07 AC 38 ms
52,948 KB
testcase_08 AC 40 ms
53,448 KB
testcase_09 AC 111 ms
76,016 KB
testcase_10 AC 89 ms
75,836 KB
testcase_11 AC 84 ms
75,804 KB
testcase_12 AC 655 ms
78,920 KB
testcase_13 TLE -
testcase_14 AC 404 ms
77,560 KB
testcase_15 AC 206 ms
76,716 KB
testcase_16 AC 275 ms
77,328 KB
testcase_17 AC 282 ms
77,276 KB
testcase_18 AC 37 ms
52,784 KB
testcase_19 AC 38 ms
52,272 KB
testcase_20 AC 39 ms
53,444 KB
testcase_21 AC 86 ms
75,864 KB
testcase_22 AC 83 ms
75,872 KB
testcase_23 AC 85 ms
75,816 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 997 ms
80,388 KB
testcase_29 AC 992 ms
80,220 KB
testcase_30 AC 39 ms
53,224 KB
testcase_31 AC 39 ms
53,504 KB
testcase_32 AC 76 ms
75,620 KB
testcase_33 AC 88 ms
75,852 KB
testcase_34 AC 87 ms
75,760 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 963 ms
80,144 KB
testcase_47 AC 1,022 ms
80,056 KB
testcase_48 AC 968 ms
80,344 KB
testcase_49 AC 1,015 ms
80,076 KB
testcase_50 AC 1,041 ms
80,888 KB
testcase_51 AC 994 ms
80,540 KB
testcase_52 AC 564 ms
78,244 KB
testcase_53 AC 583 ms
78,656 KB
testcase_54 AC 85 ms
84,012 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:
        for i in reversed(sorted(list(price_list))):
            # チケットなし
            if dp0[i]>=0:
                if i+p<=k:
                    dp1[i+p]=maxb(dp1[i+p],dp0[i]+d)
                    price_list_add.add(i+p)
            # チケットあり
            if dp1[i]>=0:
                dp0[i]=maxb(dp0[i],dp1[i]+d)
        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)
    exit()
0