結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 12:17:14
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,366 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-11-25 03:06:43
合計ジャッジ時間 87,295 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
17,572 KB
testcase_01 AC 28 ms
23,296 KB
testcase_02 AC 28 ms
17,444 KB
testcase_03 AC 30 ms
23,936 KB
testcase_04 AC 28 ms
17,700 KB
testcase_05 AC 29 ms
17,444 KB
testcase_06 AC 27 ms
17,572 KB
testcase_07 AC 27 ms
23,808 KB
testcase_08 AC 27 ms
17,568 KB
testcase_09 AC 142 ms
24,192 KB
testcase_10 AC 88 ms
18,080 KB
testcase_11 AC 70 ms
23,936 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 1,411 ms
18,720 KB
testcase_15 AC 443 ms
24,832 KB
testcase_16 AC 760 ms
18,852 KB
testcase_17 AC 1,084 ms
25,088 KB
testcase_18 AC 30 ms
17,696 KB
testcase_19 AC 28 ms
23,296 KB
testcase_20 AC 28 ms
17,696 KB
testcase_21 AC 108 ms
24,064 KB
testcase_22 AC 70 ms
18,084 KB
testcase_23 AC 101 ms
23,808 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 27 ms
17,572 KB
testcase_31 AC 26 ms
23,552 KB
testcase_32 AC 75 ms
18,208 KB
testcase_33 AC 103 ms
24,320 KB
testcase_34 AC 107 ms
18,596 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 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 AC 51 ms
24,192 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