結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-04 11:22:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 831 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,372 KB
最終ジャッジ日時 2024-11-25 01:56:34
合計ジャッジ時間 97,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,316 KB
testcase_01 AC 28 ms
23,396 KB
testcase_02 AC 33 ms
17,572 KB
testcase_03 AC 29 ms
23,868 KB
testcase_04 AC 29 ms
17,572 KB
testcase_05 AC 27 ms
23,012 KB
testcase_06 AC 32 ms
17,440 KB
testcase_07 AC 29 ms
22,784 KB
testcase_08 AC 29 ms
17,568 KB
testcase_09 AC 508 ms
23,424 KB
testcase_10 AC 295 ms
18,212 KB
testcase_11 AC 235 ms
24,288 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 1,822 ms
25,344 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 28 ms
17,568 KB
testcase_19 AC 28 ms
23,040 KB
testcase_20 AC 29 ms
17,572 KB
testcase_21 AC 330 ms
23,808 KB
testcase_22 AC 184 ms
17,956 KB
testcase_23 AC 285 ms
24,568 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,568 KB
testcase_31 AC 29 ms
23,716 KB
testcase_32 AC 222 ms
17,828 KB
testcase_33 AC 324 ms
24,704 KB
testcase_34 AC 343 ms
18,592 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 63 ms
30,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main2(n,k,pd):
    from collections import defaultdict
    pd.sort(key=lambda x:x[0],reverse=True)
    dp0=defaultdict(lambda:-1)
    dp1=defaultdict(lambda:-1)
    dp0[0]=0
    for _,(p,d) in enumerate(pd):
        ndp0=defaultdict(lambda:-1)
        ndp1=defaultdict(lambda:-1)
        for i in dp0:
            # チケットなし
            if i+p<=k:
                ndp1[i+p]=max(ndp1[i+p],dp0[i]+d)
            ndp0[i]=max(ndp0[i],dp0[i])
        for i in dp1:
            # チケットあり
            ndp0[i]=max(ndp0[i],dp1[i]+d)
            ndp1[i]=max(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