結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー AEnAEn
提出日時 2023-05-26 00:34:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,214 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 80,292 KB
最終ジャッジ日時 2024-12-24 13:44:56
合計ジャッジ時間 25,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,724 KB
testcase_01 AC 44 ms
52,740 KB
testcase_02 AC 59 ms
64,424 KB
testcase_03 AC 49 ms
60,024 KB
testcase_04 AC 42 ms
53,988 KB
testcase_05 AC 43 ms
53,016 KB
testcase_06 AC 56 ms
63,852 KB
testcase_07 AC 43 ms
53,228 KB
testcase_08 AC 55 ms
63,400 KB
testcase_09 AC 109 ms
75,900 KB
testcase_10 AC 92 ms
75,648 KB
testcase_11 AC 93 ms
75,848 KB
testcase_12 AC 231 ms
77,420 KB
testcase_13 AC 448 ms
78,596 KB
testcase_14 AC 167 ms
76,716 KB
testcase_15 AC 181 ms
76,600 KB
testcase_16 AC 262 ms
76,980 KB
testcase_17 AC 268 ms
77,040 KB
testcase_18 AC 42 ms
53,240 KB
testcase_19 AC 42 ms
52,780 KB
testcase_20 AC 43 ms
54,120 KB
testcase_21 AC 84 ms
75,648 KB
testcase_22 AC 79 ms
72,684 KB
testcase_23 AC 78 ms
73,444 KB
testcase_24 AC 731 ms
79,668 KB
testcase_25 AC 782 ms
79,352 KB
testcase_26 AC 1,108 ms
79,248 KB
testcase_27 AC 879 ms
80,016 KB
testcase_28 AC 820 ms
79,644 KB
testcase_29 AC 798 ms
79,388 KB
testcase_30 AC 42 ms
54,268 KB
testcase_31 AC 41 ms
53,684 KB
testcase_32 AC 81 ms
74,048 KB
testcase_33 AC 90 ms
75,764 KB
testcase_34 AC 90 ms
75,652 KB
testcase_35 AC 1,118 ms
79,736 KB
testcase_36 AC 857 ms
79,776 KB
testcase_37 AC 1,214 ms
79,504 KB
testcase_38 AC 563 ms
80,040 KB
testcase_39 AC 503 ms
79,496 KB
testcase_40 AC 1,085 ms
80,168 KB
testcase_41 AC 923 ms
79,484 KB
testcase_42 AC 991 ms
80,292 KB
testcase_43 AC 647 ms
79,604 KB
testcase_44 AC 936 ms
79,876 KB
testcase_45 AC 595 ms
79,992 KB
testcase_46 AC 726 ms
79,156 KB
testcase_47 AC 776 ms
79,544 KB
testcase_48 AC 941 ms
79,584 KB
testcase_49 AC 801 ms
79,784 KB
testcase_50 AC 796 ms
79,432 KB
testcase_51 AC 815 ms
79,484 KB
testcase_52 AC 358 ms
78,944 KB
testcase_53 AC 411 ms
79,176 KB
testcase_54 AC 911 ms
80,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
piza = [list(map(int, input().split())) for _ in range(N)]
INF = 10**8

piza.sort(key = lambda x:(-x[0]))
dp = [[-INF]*(K+1) for _ in range(2)]
dp[1][0] = 0
for i in range(N):
    P,D = piza[i]
    ndp = [[-INF]*(K+1) for _ in range(2)]
    for k in range(K+1):
        ndp[0][k] = max(ndp[0][k],dp[0][k])
        ndp[1][k] = max(ndp[1][k],dp[1][k])
        ndp[1][k] = max(ndp[1][k],dp[0][k]+D)
        if k+P<=K:
            ndp[0][k+P] = max(ndp[0][k+P],dp[1][k]+D)
    dp = ndp
res = 0
for i in range(2):
    for j in range(K+1):
        res = max(res,dp[i][j])
print(res)
0