結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
58,916 KB
testcase_01 AC 34 ms
298,496 KB
testcase_02 AC 50 ms
70,272 KB
testcase_03 AC 38 ms
322,048 KB
testcase_04 AC 33 ms
57,728 KB
testcase_05 AC 33 ms
316,288 KB
testcase_06 AC 48 ms
71,072 KB
testcase_07 AC 36 ms
61,052 KB
testcase_08 AC 45 ms
67,840 KB
testcase_09 AC 122 ms
341,376 KB
testcase_10 AC 97 ms
82,304 KB
testcase_11 AC 94 ms
340,096 KB
testcase_12 AC 1,152 ms
160,672 KB
testcase_13 TLE -
testcase_14 AC 622 ms
127,360 KB
testcase_15 AC 289 ms
359,296 KB
testcase_16 AC 412 ms
107,264 KB
testcase_17 AC 491 ms
359,040 KB
testcase_18 AC 36 ms
57,728 KB
testcase_19 AC 35 ms
315,904 KB
testcase_20 AC 35 ms
57,856 KB
testcase_21 AC 119 ms
343,492 KB
testcase_22 AC 86 ms
83,336 KB
testcase_23 AC 94 ms
82,176 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,908 ms
270,668 KB
testcase_29 MLE -
testcase_30 AC 35 ms
57,856 KB
testcase_31 AC 36 ms
54,288 KB
testcase_32 AC 91 ms
76,904 KB
testcase_33 AC 104 ms
77,160 KB
testcase_34 AC 135 ms
82,332 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 TLE -
testcase_47 AC 1,970 ms
264,700 KB
testcase_48 AC 1,985 ms
264,872 KB
testcase_49 AC 1,978 ms
264,428 KB
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 486 ms
156,828 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)
    dp=[[-1]*2 for _ in range(k+1)]
    dp[0][0]=0
    price_list=set([0])
    for _,(p,d) in enumerate(pd):
        ndp=[[-1]*2 for _ in range(k+1)]
        price_list_add=set()
        for i in price_list:
            for j in range(2):
                if dp[i][j]<0:continue
                # 買う
                if i+p<=k:
                    ndp[i+p][min(1,j+1)]=max(ndp[i+p][min(1,j+1)],dp[i][j]+d)
                    price_list_add.add(i+p)
                # 買わない
                ndp[i][j]=max(ndp[i][j],dp[i][j])
                # チケット使う
                if j!=0:
                    ndp[i][j-1]=max(ndp[i][j-1],dp[i][j]+d)
        dp=ndp
        price_list=price_list|price_list_add
    return max([max(dp[i]) for i in range(k+1)])

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