結果
問題 | No.951 【本日限定】1枚頼むともう1枚無料! |
ユーザー | persimmon-persimmon |
提出日時 | 2022-04-04 11:34:33 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,048 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 82,064 KB |
実行使用メモリ | 186,172 KB |
最終ジャッジ日時 | 2024-05-03 21:32:30 |
合計ジャッジ時間 | 5,926 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,088 KB |
testcase_01 | AC | 39 ms
51,840 KB |
testcase_02 | AC | 51 ms
59,904 KB |
testcase_03 | AC | 39 ms
51,840 KB |
testcase_04 | AC | 39 ms
51,840 KB |
testcase_05 | AC | 38 ms
52,480 KB |
testcase_06 | AC | 46 ms
59,648 KB |
testcase_07 | AC | 38 ms
52,156 KB |
testcase_08 | AC | 39 ms
52,736 KB |
testcase_09 | AC | 135 ms
75,832 KB |
testcase_10 | AC | 105 ms
75,904 KB |
testcase_11 | AC | 99 ms
75,752 KB |
testcase_12 | AC | 1,172 ms
146,552 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
ソースコード
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)