結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー AEnAEn
提出日時 2023-05-26 00:26:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 649 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 85,528 KB
最終ジャッジ日時 2024-12-24 13:41:49
合計ジャッジ時間 60,632 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,224 KB
testcase_01 AC 49 ms
58,752 KB
testcase_02 AC 70 ms
67,584 KB
testcase_03 AC 53 ms
60,160 KB
testcase_04 AC 48 ms
58,624 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 70 ms
67,328 KB
testcase_07 AC 50 ms
59,264 KB
testcase_08 AC 65 ms
65,792 KB
testcase_09 AC 234 ms
76,344 KB
testcase_10 AC 129 ms
76,000 KB
testcase_11 AC 128 ms
76,544 KB
testcase_12 AC 590 ms
78,036 KB
testcase_13 AC 1,751 ms
81,592 KB
testcase_14 AC 397 ms
77,800 KB
testcase_15 AC 321 ms
77,440 KB
testcase_16 AC 444 ms
77,944 KB
testcase_17 AC 519 ms
78,180 KB
testcase_18 AC 46 ms
52,480 KB
testcase_19 AC 47 ms
52,096 KB
testcase_20 AC 48 ms
52,224 KB
testcase_21 AC 138 ms
75,980 KB
testcase_22 AC 121 ms
75,748 KB
testcase_23 AC 131 ms
75,964 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 AC 1,784 ms
84,480 KB
testcase_29 AC 1,693 ms
84,920 KB
testcase_30 AC 45 ms
52,480 KB
testcase_31 AC 46 ms
52,480 KB
testcase_32 AC 120 ms
75,792 KB
testcase_33 AC 145 ms
76,604 KB
testcase_34 AC 165 ms
76,432 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 1,653 ms
84,596 KB
testcase_47 AC 1,720 ms
85,120 KB
testcase_48 AC 1,723 ms
84,836 KB
testcase_49 AC 1,664 ms
85,272 KB
testcase_50 AC 1,720 ms
85,000 KB
testcase_51 AC 1,705 ms
85,036 KB
testcase_52 AC 1,449 ms
81,864 KB
testcase_53 AC 1,698 ms
84,696 KB
testcase_54 AC 1,137 ms
84,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

piza.sort(key = lambda x:(-x[0]))
dp = [[-float('inf')]*(K+1) for _ in range(2)]
dp[1][0] = 0
for i in range(N):
    P,D = piza[i]
    ndp = [[-float('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