結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー AEnAEn
提出日時 2023-05-26 00:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,817 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 80,320 KB
最終ジャッジ日時 2024-06-06 19:58:54
合計ジャッジ時間 40,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 46 ms
59,520 KB
testcase_02 AC 57 ms
63,744 KB
testcase_03 AC 49 ms
61,952 KB
testcase_04 AC 42 ms
58,368 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 59 ms
63,744 KB
testcase_07 AC 47 ms
59,008 KB
testcase_08 AC 60 ms
64,128 KB
testcase_09 AC 118 ms
76,288 KB
testcase_10 AC 103 ms
76,416 KB
testcase_11 AC 97 ms
75,776 KB
testcase_12 AC 409 ms
77,908 KB
testcase_13 AC 903 ms
79,188 KB
testcase_14 AC 263 ms
77,044 KB
testcase_15 AC 242 ms
76,672 KB
testcase_16 AC 348 ms
76,724 KB
testcase_17 AC 380 ms
77,100 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
52,480 KB
testcase_20 AC 40 ms
52,608 KB
testcase_21 AC 94 ms
75,776 KB
testcase_22 AC 78 ms
71,296 KB
testcase_23 AC 83 ms
73,472 KB
testcase_24 AC 1,517 ms
80,060 KB
testcase_25 AC 1,609 ms
79,944 KB
testcase_26 AC 1,767 ms
79,460 KB
testcase_27 AC 1,769 ms
79,724 KB
testcase_28 AC 1,272 ms
79,488 KB
testcase_29 AC 1,280 ms
79,836 KB
testcase_30 AC 39 ms
52,096 KB
testcase_31 AC 39 ms
52,096 KB
testcase_32 AC 81 ms
72,448 KB
testcase_33 AC 98 ms
75,648 KB
testcase_34 AC 108 ms
75,904 KB
testcase_35 AC 1,427 ms
80,320 KB
testcase_36 AC 1,330 ms
79,892 KB
testcase_37 AC 1,445 ms
79,568 KB
testcase_38 AC 1,161 ms
79,772 KB
testcase_39 AC 1,139 ms
80,064 KB
testcase_40 AC 1,385 ms
79,720 KB
testcase_41 AC 1,495 ms
79,724 KB
testcase_42 AC 1,182 ms
79,992 KB
testcase_43 AC 1,169 ms
79,728 KB
testcase_44 AC 1,817 ms
80,100 KB
testcase_45 AC 1,172 ms
79,852 KB
testcase_46 AC 1,225 ms
79,360 KB
testcase_47 AC 1,231 ms
79,616 KB
testcase_48 AC 1,247 ms
79,488 KB
testcase_49 AC 1,259 ms
79,360 KB
testcase_50 AC 1,253 ms
79,768 KB
testcase_51 AC 1,271 ms
79,800 KB
testcase_52 AC 1,037 ms
78,376 KB
testcase_53 AC 1,237 ms
79,212 KB
testcase_54 AC 1,153 ms
79,744 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**9

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 j in range(2):
        for k in range(K+1):
            ndp[j][k] = max(ndp[j][k],dp[j][k])
            if j:
                ndp[j][k] = max(ndp[j][k],dp[j-1][k]+D)
            if j==0 and k+P<=K:
                ndp[j][k+P] = max(ndp[j][k+P],dp[j+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