結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー rlangevinrlangevin
提出日時 2023-09-25 08:56:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 817 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 135 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 80,664 KB
最終ジャッジ日時 2024-07-18 07:21:37
合計ジャッジ時間 20,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 36 ms
52,364 KB
testcase_02 AC 44 ms
63,104 KB
testcase_03 AC 37 ms
58,880 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 33 ms
52,224 KB
testcase_06 AC 43 ms
61,952 KB
testcase_07 AC 33 ms
52,352 KB
testcase_08 AC 41 ms
61,056 KB
testcase_09 AC 79 ms
76,032 KB
testcase_10 AC 69 ms
75,136 KB
testcase_11 AC 74 ms
76,032 KB
testcase_12 AC 180 ms
77,256 KB
testcase_13 AC 498 ms
78,672 KB
testcase_14 AC 119 ms
76,664 KB
testcase_15 AC 121 ms
76,588 KB
testcase_16 AC 187 ms
76,544 KB
testcase_17 AC 172 ms
76,672 KB
testcase_18 AC 35 ms
52,736 KB
testcase_19 AC 32 ms
51,840 KB
testcase_20 AC 32 ms
52,224 KB
testcase_21 AC 58 ms
72,192 KB
testcase_22 AC 56 ms
69,760 KB
testcase_23 AC 61 ms
69,888 KB
testcase_24 AC 470 ms
80,228 KB
testcase_25 AC 675 ms
80,256 KB
testcase_26 AC 753 ms
80,596 KB
testcase_27 AC 741 ms
80,128 KB
testcase_28 AC 675 ms
80,512 KB
testcase_29 AC 511 ms
80,568 KB
testcase_30 AC 33 ms
51,712 KB
testcase_31 AC 33 ms
52,352 KB
testcase_32 AC 56 ms
68,992 KB
testcase_33 AC 58 ms
70,272 KB
testcase_34 AC 63 ms
75,648 KB
testcase_35 AC 540 ms
80,648 KB
testcase_36 AC 553 ms
80,000 KB
testcase_37 AC 792 ms
80,252 KB
testcase_38 AC 796 ms
80,512 KB
testcase_39 AC 790 ms
80,656 KB
testcase_40 AC 817 ms
80,384 KB
testcase_41 AC 809 ms
80,496 KB
testcase_42 AC 790 ms
80,512 KB
testcase_43 AC 784 ms
80,384 KB
testcase_44 AC 785 ms
80,340 KB
testcase_45 AC 798 ms
80,512 KB
testcase_46 AC 495 ms
80,000 KB
testcase_47 AC 482 ms
80,664 KB
testcase_48 AC 484 ms
80,352 KB
testcase_49 AC 472 ms
80,512 KB
testcase_50 AC 465 ms
80,000 KB
testcase_51 AC 470 ms
80,256 KB
testcase_52 AC 336 ms
78,464 KB
testcase_53 AC 386 ms
80,584 KB
testcase_54 AC 296 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
inf = 10 ** 18
pre0 = [-inf] * (K + 1)
pre1 = [-inf] * (K + 1)
pre0[0] = 0
S = []
for _ in range(N):
    P, D = map(int, input().split())
    S.append((-P, -D))
S.sort()

for P, D in S:
    P, D = -P, -D
    dp0 = [-inf] * (K + 1)
    dp1 = [-inf] * (K + 1)
    for i in range(K + 1):
        dp0[i] = max(dp0[i], pre0[i], pre1[i] + D)
        dp1[i] = max(dp1[i], pre1[i])
        if i - P >= 0:
            dp1[i] = max(dp1[i], pre0[i - P] + D)
    dp0, pre0 = pre0, dp0
    dp1, pre1 = pre1, dp1

print(max(pre0 + pre1))
0