結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-21 15:03:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,054 ms / 2,000 ms
コード長 994 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 83,584 KB
最終ジャッジ日時 2024-07-04 05:58:11
合計ジャッジ時間 21,718 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 52 ms
62,380 KB
testcase_03 AC 46 ms
59,136 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 54 ms
62,784 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 AC 51 ms
61,056 KB
testcase_09 AC 81 ms
75,776 KB
testcase_10 AC 66 ms
69,760 KB
testcase_11 AC 68 ms
70,784 KB
testcase_12 AC 231 ms
76,828 KB
testcase_13 AC 600 ms
78,764 KB
testcase_14 AC 164 ms
75,688 KB
testcase_15 AC 126 ms
75,800 KB
testcase_16 AC 165 ms
76,544 KB
testcase_17 AC 196 ms
76,572 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 39 ms
52,612 KB
testcase_21 AC 67 ms
70,272 KB
testcase_22 AC 63 ms
66,944 KB
testcase_23 AC 65 ms
69,092 KB
testcase_24 AC 851 ms
82,688 KB
testcase_25 AC 840 ms
81,152 KB
testcase_26 AC 776 ms
78,376 KB
testcase_27 AC 783 ms
78,412 KB
testcase_28 AC 533 ms
79,364 KB
testcase_29 AC 547 ms
80,068 KB
testcase_30 AC 38 ms
52,480 KB
testcase_31 AC 39 ms
52,224 KB
testcase_32 AC 63 ms
67,584 KB
testcase_33 AC 68 ms
68,352 KB
testcase_34 AC 69 ms
72,448 KB
testcase_35 AC 707 ms
80,088 KB
testcase_36 AC 713 ms
80,184 KB
testcase_37 AC 739 ms
83,584 KB
testcase_38 AC 1,054 ms
81,536 KB
testcase_39 AC 917 ms
80,772 KB
testcase_40 AC 732 ms
78,412 KB
testcase_41 AC 662 ms
78,568 KB
testcase_42 AC 723 ms
78,564 KB
testcase_43 AC 674 ms
79,008 KB
testcase_44 AC 857 ms
78,720 KB
testcase_45 AC 917 ms
79,216 KB
testcase_46 AC 525 ms
79,172 KB
testcase_47 AC 527 ms
79,616 KB
testcase_48 AC 524 ms
80,512 KB
testcase_49 AC 527 ms
80,128 KB
testcase_50 AC 563 ms
79,148 KB
testcase_51 AC 528 ms
79,408 KB
testcase_52 AC 426 ms
77,952 KB
testcase_53 AC 476 ms
78,744 KB
testcase_54 AC 340 ms
78,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

def main():
    n, k = map(int, input().split())
    PD = []
    for i in range(n):
        p, d = map(int, input().split())
        PD.append((p,d))

    PD.sort(key=lambda x: -x[0])
    INF = 10**18
    dp0 = [-INF]*(k+1)
    dp1 = [-INF]*(k+1)
    dp0[0] = 0
    for p, d in PD:
        nx0 = [-INF]*(k+1)
        nx1 = [-INF]*(k+1)
        for i in range(k+1):
            nx0[i] = dp0[i]
        for i in range(k+1):
            nx1[i] = dp1[i]
        for i in range(k+1):
            if dp0[i] == -INF:
                continue
            if i+p <= k:
                nx1[i+p] = max(nx1[i+p], dp0[i]+d)
        for i in range(k+1):
            if dp1[i] == -INF:
                continue
            nx0[i] = max(nx0[i], dp1[i]+d)
        dp0 = nx0
        dp1 = nx1
    ans = -INF
    for i in range(k+1):
        ans = max(ans, dp0[i], dp1[i])
    print(ans)

if __name__ == '__main__':
    main()
0