結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 56 ms
64,000 KB
testcase_03 AC 45 ms
59,904 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 54 ms
62,976 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 50 ms
61,440 KB
testcase_09 AC 102 ms
75,820 KB
testcase_10 AC 92 ms
75,776 KB
testcase_11 AC 95 ms
75,904 KB
testcase_12 AC 209 ms
77,372 KB
testcase_13 AC 397 ms
79,032 KB
testcase_14 AC 151 ms
76,788 KB
testcase_15 AC 171 ms
76,800 KB
testcase_16 AC 238 ms
76,772 KB
testcase_17 AC 245 ms
77,136 KB
testcase_18 AC 37 ms
52,224 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 81 ms
75,776 KB
testcase_22 AC 74 ms
72,192 KB
testcase_23 AC 77 ms
73,472 KB
testcase_24 AC 636 ms
79,744 KB
testcase_25 AC 690 ms
79,560 KB
testcase_26 AC 986 ms
79,676 KB
testcase_27 AC 774 ms
79,948 KB
testcase_28 AC 710 ms
79,360 KB
testcase_29 AC 719 ms
79,704 KB
testcase_30 AC 37 ms
52,096 KB
testcase_31 AC 37 ms
52,224 KB
testcase_32 AC 77 ms
73,856 KB
testcase_33 AC 86 ms
75,392 KB
testcase_34 AC 92 ms
75,776 KB
testcase_35 AC 992 ms
79,872 KB
testcase_36 AC 767 ms
80,128 KB
testcase_37 AC 1,066 ms
79,744 KB
testcase_38 AC 531 ms
79,960 KB
testcase_39 AC 457 ms
79,684 KB
testcase_40 AC 967 ms
80,216 KB
testcase_41 AC 844 ms
79,432 KB
testcase_42 AC 905 ms
80,348 KB
testcase_43 AC 594 ms
79,556 KB
testcase_44 AC 847 ms
79,816 KB
testcase_45 AC 529 ms
80,192 KB
testcase_46 AC 657 ms
79,232 KB
testcase_47 AC 704 ms
79,232 KB
testcase_48 AC 841 ms
79,232 KB
testcase_49 AC 723 ms
79,360 KB
testcase_50 AC 735 ms
80,008 KB
testcase_51 AC 742 ms
79,532 KB
testcase_52 AC 331 ms
78,720 KB
testcase_53 AC 375 ms
79,232 KB
testcase_54 AC 822 ms
79,872 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