結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー mkawa2mkawa2
提出日時 2022-01-24 16:10:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 419 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 2,222 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 77,596 KB
最終ジャッジ日時 2024-12-14 13:14:17
合計ジャッジ時間 12,980 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,532 KB
testcase_01 AC 40 ms
52,264 KB
testcase_02 AC 50 ms
63,300 KB
testcase_03 AC 41 ms
59,140 KB
testcase_04 AC 39 ms
54,188 KB
testcase_05 AC 39 ms
54,000 KB
testcase_06 AC 47 ms
61,708 KB
testcase_07 AC 39 ms
52,852 KB
testcase_08 AC 45 ms
60,424 KB
testcase_09 AC 71 ms
70,984 KB
testcase_10 AC 67 ms
68,240 KB
testcase_11 AC 66 ms
69,264 KB
testcase_12 AC 151 ms
76,936 KB
testcase_13 AC 285 ms
76,860 KB
testcase_14 AC 109 ms
74,048 KB
testcase_15 AC 99 ms
73,624 KB
testcase_16 AC 114 ms
75,536 KB
testcase_17 AC 138 ms
76,848 KB
testcase_18 AC 38 ms
52,696 KB
testcase_19 AC 38 ms
53,036 KB
testcase_20 AC 39 ms
53,160 KB
testcase_21 AC 63 ms
66,928 KB
testcase_22 AC 65 ms
69,572 KB
testcase_23 AC 66 ms
68,576 KB
testcase_24 AC 400 ms
77,168 KB
testcase_25 AC 398 ms
77,096 KB
testcase_26 AC 375 ms
77,212 KB
testcase_27 AC 413 ms
77,196 KB
testcase_28 AC 303 ms
77,256 KB
testcase_29 AC 341 ms
77,596 KB
testcase_30 AC 39 ms
53,304 KB
testcase_31 AC 39 ms
53,024 KB
testcase_32 AC 65 ms
68,208 KB
testcase_33 AC 68 ms
69,672 KB
testcase_34 AC 66 ms
68,320 KB
testcase_35 AC 413 ms
77,368 KB
testcase_36 AC 415 ms
76,972 KB
testcase_37 AC 292 ms
77,100 KB
testcase_38 AC 375 ms
77,344 KB
testcase_39 AC 419 ms
77,128 KB
testcase_40 AC 336 ms
77,120 KB
testcase_41 AC 300 ms
77,268 KB
testcase_42 AC 315 ms
76,924 KB
testcase_43 AC 381 ms
77,572 KB
testcase_44 AC 309 ms
77,264 KB
testcase_45 AC 386 ms
76,928 KB
testcase_46 AC 297 ms
77,004 KB
testcase_47 AC 314 ms
77,204 KB
testcase_48 AC 309 ms
77,144 KB
testcase_49 AC 312 ms
77,392 KB
testcase_50 AC 338 ms
76,920 KB
testcase_51 AC 346 ms
77,032 KB
testcase_52 AC 218 ms
76,644 KB
testcase_53 AC 236 ms
76,900 KB
testcase_54 AC 149 ms
71,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
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 = (1 << 63)-1
# inf = (1<<31)-1
md = 10**9+7
# md = 998244353

n, k = LI()
pd = LLI(n)
pd.sort(key=lambda x: -x[0])

dp0 = [-1]*(k+1)
dp1 = [-1]*(k+1)
dp0[0] = 0
for p, d in pd:
    for i in range(k, -1, -1):
        if i+p <= k and dp0[i] != -1: dp1[i+p] = max(dp1[i+p], dp0[i]+d)
        if dp1[i] != -1: dp0[i] = max(dp0[i], dp1[i]+d)

ans = max(max(dp0), max(dp1))
print(ans)
0