結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 52 ms
62,336 KB
testcase_03 AC 44 ms
58,624 KB
testcase_04 AC 41 ms
52,352 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 50 ms
61,440 KB
testcase_07 AC 43 ms
52,352 KB
testcase_08 AC 48 ms
60,288 KB
testcase_09 AC 73 ms
67,584 KB
testcase_10 AC 65 ms
67,200 KB
testcase_11 AC 68 ms
66,176 KB
testcase_12 AC 139 ms
77,056 KB
testcase_13 AC 384 ms
77,440 KB
testcase_14 AC 106 ms
71,552 KB
testcase_15 AC 101 ms
69,632 KB
testcase_16 AC 147 ms
72,832 KB
testcase_17 AC 140 ms
77,440 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 63 ms
66,176 KB
testcase_22 AC 63 ms
67,072 KB
testcase_23 AC 62 ms
66,304 KB
testcase_24 AC 380 ms
77,440 KB
testcase_25 AC 500 ms
77,696 KB
testcase_26 AC 521 ms
77,312 KB
testcase_27 AC 461 ms
77,440 KB
testcase_28 AC 344 ms
76,800 KB
testcase_29 AC 338 ms
77,184 KB
testcase_30 AC 40 ms
52,736 KB
testcase_31 AC 40 ms
52,224 KB
testcase_32 AC 63 ms
65,152 KB
testcase_33 AC 66 ms
66,432 KB
testcase_34 AC 67 ms
66,944 KB
testcase_35 AC 571 ms
77,568 KB
testcase_36 AC 555 ms
77,184 KB
testcase_37 AC 594 ms
77,312 KB
testcase_38 AC 584 ms
77,312 KB
testcase_39 AC 591 ms
77,184 KB
testcase_40 AC 483 ms
77,312 KB
testcase_41 AC 588 ms
77,696 KB
testcase_42 AC 574 ms
77,312 KB
testcase_43 AC 485 ms
77,440 KB
testcase_44 AC 473 ms
77,824 KB
testcase_45 AC 474 ms
77,456 KB
testcase_46 AC 343 ms
72,832 KB
testcase_47 AC 336 ms
74,752 KB
testcase_48 AC 329 ms
74,112 KB
testcase_49 AC 329 ms
74,624 KB
testcase_50 AC 332 ms
77,312 KB
testcase_51 AC 335 ms
77,312 KB
testcase_52 AC 214 ms
72,960 KB
testcase_53 AC 244 ms
73,088 KB
testcase_54 AC 394 ms
71,040 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