結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー mkawa2mkawa2
提出日時 2021-03-25 01:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 558 ms / 2,000 ms
コード長 1,084 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,824 KB
最終ジャッジ日時 2024-05-05 05:39:38
合計ジャッジ時間 14,803 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 50 ms
62,208 KB
testcase_03 AC 42 ms
58,880 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 37 ms
52,224 KB
testcase_06 AC 54 ms
61,696 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 45 ms
59,904 KB
testcase_09 AC 77 ms
67,840 KB
testcase_10 AC 65 ms
67,200 KB
testcase_11 AC 67 ms
66,560 KB
testcase_12 AC 139 ms
76,800 KB
testcase_13 AC 371 ms
77,568 KB
testcase_14 AC 104 ms
71,808 KB
testcase_15 AC 99 ms
69,504 KB
testcase_16 AC 143 ms
72,448 KB
testcase_17 AC 143 ms
77,440 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 37 ms
52,736 KB
testcase_21 AC 62 ms
65,920 KB
testcase_22 AC 62 ms
66,688 KB
testcase_23 AC 60 ms
66,176 KB
testcase_24 AC 357 ms
77,568 KB
testcase_25 AC 459 ms
77,696 KB
testcase_26 AC 477 ms
77,184 KB
testcase_27 AC 428 ms
77,440 KB
testcase_28 AC 318 ms
76,928 KB
testcase_29 AC 325 ms
77,440 KB
testcase_30 AC 40 ms
52,480 KB
testcase_31 AC 39 ms
52,608 KB
testcase_32 AC 61 ms
65,408 KB
testcase_33 AC 67 ms
66,816 KB
testcase_34 AC 67 ms
67,200 KB
testcase_35 AC 522 ms
77,312 KB
testcase_36 AC 507 ms
77,568 KB
testcase_37 AC 548 ms
77,440 KB
testcase_38 AC 545 ms
77,696 KB
testcase_39 AC 558 ms
77,312 KB
testcase_40 AC 465 ms
77,696 KB
testcase_41 AC 542 ms
77,568 KB
testcase_42 AC 528 ms
77,568 KB
testcase_43 AC 442 ms
77,696 KB
testcase_44 AC 425 ms
77,696 KB
testcase_45 AC 441 ms
77,696 KB
testcase_46 AC 324 ms
72,832 KB
testcase_47 AC 325 ms
74,368 KB
testcase_48 AC 317 ms
74,240 KB
testcase_49 AC 330 ms
75,136 KB
testcase_50 AC 323 ms
77,824 KB
testcase_51 AC 318 ms
77,312 KB
testcase_52 AC 210 ms
73,600 KB
testcase_53 AC 236 ms
73,216 KB
testcase_54 AC 360 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**6)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

n,k=LI()
pd=LLI(n)

pd.sort(key=lambda x:-x[0])
# dp[i][j]...i=0前回払っていない、i=1払った、j円使った、ときの価値の最大値
dp=[[-inf]*(k+1) for _ in range(2)]
dp[0][0]=0
for p,d in pd:
    for j in range(k,-1,-1):
        dp[0][j]=max(dp[0][j],dp[1][j]+d)
        if j-p>=0:dp[1][j]=max(dp[1][j],dp[0][j-p]+d)

ans=max(max(dp[0]),max(dp[1]))
print(ans)
0