結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー brthyyjpbrthyyjp
提出日時 2021-04-21 14:57:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 857 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 226,688 KB
最終ジャッジ日時 2024-07-04 05:57:10
合計ジャッジ時間 11,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,728 KB
testcase_01 AC 49 ms
60,416 KB
testcase_02 AC 65 ms
66,432 KB
testcase_03 AC 53 ms
62,592 KB
testcase_04 AC 49 ms
60,800 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 61 ms
66,048 KB
testcase_07 AC 49 ms
60,416 KB
testcase_08 AC 59 ms
66,048 KB
testcase_09 AC 154 ms
78,188 KB
testcase_10 AC 120 ms
77,428 KB
testcase_11 AC 118 ms
77,056 KB
testcase_12 AC 802 ms
105,984 KB
testcase_13 TLE -
testcase_14 AC 508 ms
93,688 KB
testcase_15 AC 401 ms
90,376 KB
testcase_16 AC 552 ms
90,832 KB
testcase_17 AC 667 ms
86,868 KB
testcase_18 AC 40 ms
53,120 KB
testcase_19 AC 40 ms
52,748 KB
testcase_20 AC 40 ms
53,120 KB
testcase_21 AC 119 ms
78,336 KB
testcase_22 AC 99 ms
76,664 KB
testcase_23 AC 110 ms
77,064 KB
testcase_24 TLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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
dp = [[-INF]*2 for i in range(k+1)]
dp[0][0] = 0
for p, d in PD:
    nx = [[-INF]*2 for i in range(k+1)]
    for i in range(k+1):
        for j in range(2):
            nx[i][j] = max(nx[i][j], dp[i][j])
    for i in range(k+1):
        for j in range(2):
            if dp[i][j] == -INF:
                continue
            if j == 0:
                if i+p <= k:
                    nx[i+p][1] = max(nx[i+p][1], dp[i][j]+d)
            else:
                nx[i][0] = max(nx[i][0], dp[i][j]+d)
    dp = nx

ans = -INF
for i in range(k+1):
    for j in range(2):
        ans = max(ans, dp[i][j])
print(ans)
0