結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 44 ms
59,008 KB
testcase_02 AC 63 ms
67,840 KB
testcase_03 AC 47 ms
60,288 KB
testcase_04 AC 44 ms
59,008 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 63 ms
67,648 KB
testcase_07 AC 44 ms
59,520 KB
testcase_08 AC 59 ms
65,920 KB
testcase_09 AC 142 ms
76,736 KB
testcase_10 AC 118 ms
76,444 KB
testcase_11 AC 116 ms
76,792 KB
testcase_12 AC 539 ms
78,672 KB
testcase_13 AC 1,582 ms
81,844 KB
testcase_14 AC 354 ms
77,796 KB
testcase_15 AC 286 ms
77,952 KB
testcase_16 AC 394 ms
78,264 KB
testcase_17 AC 456 ms
78,048 KB
testcase_18 AC 40 ms
52,480 KB
testcase_19 AC 40 ms
52,352 KB
testcase_20 AC 41 ms
52,224 KB
testcase_21 AC 122 ms
75,872 KB
testcase_22 AC 107 ms
75,872 KB
testcase_23 AC 117 ms
76,088 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,929 ms
84,736 KB
testcase_27 AC 1,994 ms
85,344 KB
testcase_28 AC 1,577 ms
84,608 KB
testcase_29 AC 1,523 ms
85,424 KB
testcase_30 AC 39 ms
52,736 KB
testcase_31 AC 39 ms
52,352 KB
testcase_32 AC 104 ms
76,180 KB
testcase_33 AC 125 ms
76,912 KB
testcase_34 AC 137 ms
76,596 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 1,937 ms
84,532 KB
testcase_39 TLE -
testcase_40 AC 1,967 ms
84,752 KB
testcase_41 TLE -
testcase_42 AC 1,876 ms
85,608 KB
testcase_43 AC 1,785 ms
85,228 KB
testcase_44 AC 1,921 ms
85,028 KB
testcase_45 AC 1,829 ms
84,768 KB
testcase_46 AC 1,495 ms
84,864 KB
testcase_47 AC 1,522 ms
85,448 KB
testcase_48 AC 1,532 ms
84,736 KB
testcase_49 AC 1,483 ms
85,144 KB
testcase_50 AC 1,524 ms
85,132 KB
testcase_51 AC 1,518 ms
84,652 KB
testcase_52 AC 1,294 ms
82,888 KB
testcase_53 AC 1,491 ms
84,436 KB
testcase_54 AC 1,037 ms
83,968 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