結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 11:34:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,048 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 342,836 KB
最終ジャッジ日時 2024-11-25 02:08:41
合計ジャッジ時間 73,794 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,188 KB
testcase_01 AC 39 ms
235,408 KB
testcase_02 AC 42 ms
67,716 KB
testcase_03 AC 35 ms
285,880 KB
testcase_04 AC 33 ms
59,616 KB
testcase_05 AC 34 ms
276,468 KB
testcase_06 AC 40 ms
67,208 KB
testcase_07 AC 35 ms
239,284 KB
testcase_08 AC 36 ms
59,972 KB
testcase_09 AC 122 ms
256,048 KB
testcase_10 AC 96 ms
82,684 KB
testcase_11 AC 85 ms
287,364 KB
testcase_12 AC 1,087 ms
153,244 KB
testcase_13 TLE -
testcase_14 AC 631 ms
116,400 KB
testcase_15 AC 299 ms
295,180 KB
testcase_16 AC 437 ms
92,184 KB
testcase_17 AC 603 ms
291,492 KB
testcase_18 AC 34 ms
59,220 KB
testcase_19 AC 35 ms
268,440 KB
testcase_20 AC 34 ms
59,600 KB
testcase_21 AC 92 ms
262,636 KB
testcase_22 AC 82 ms
82,388 KB
testcase_23 AC 95 ms
327,732 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 AC 36 ms
60,500 KB
testcase_31 AC 36 ms
52,760 KB
testcase_32 AC 80 ms
75,628 KB
testcase_33 AC 100 ms
75,832 KB
testcase_34 AC 101 ms
75,952 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 AC 1,203 ms
117,084 KB
testcase_53 AC 1,226 ms
119,608 KB
testcase_54 AC 74 ms
243,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main2(n,k,pd):
    pd.sort(key=lambda x:x[0],reverse=True)
    dp0={}
    dp1={}
    dp0[0]=0
    for _,(p,d) in enumerate(pd):
        ndp0={}
        ndp1={}
        for i in dp0:
            # チケットなし
            if i+p<=k:
                if i+p in ndp1:
                    ndp1[i+p]=max(ndp1[i+p],dp0[i]+d)
                else:
                    ndp1[i+p]=dp0[i]+d
            if i in ndp0:
                ndp0[i]=max(ndp0[i],dp0[i])
            else:
                ndp0[i]=dp0[i]
        for i in dp1:
            # チケットあり
            if i in ndp0:
                ndp0[i]=max(ndp0[i],dp1[i]+d)
            else:
                ndp0[i]=dp1[i]+d
            if i in ndp1:
                ndp1[i]=max(ndp1[i],dp1[i])
            else:
                ndp1[i]=dp1[i]
        dp0=ndp0
        dp1=ndp1
    return max(max(dp0.values()),max(dp1.values()))

if __name__=='__main__':
    n,k=map(int,input().split())
    pd=[list(map(int,input().split())) for _ in range(n)]
    ret2=main2(n,k,pd)
    print(ret2)
0