結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 53 ms
61,952 KB
testcase_03 AC 44 ms
57,984 KB
testcase_04 AC 42 ms
52,352 KB
testcase_05 AC 39 ms
52,400 KB
testcase_06 AC 50 ms
60,288 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 48 ms
59,520 KB
testcase_09 AC 74 ms
68,992 KB
testcase_10 AC 72 ms
68,736 KB
testcase_11 AC 67 ms
68,604 KB
testcase_12 AC 153 ms
76,908 KB
testcase_13 AC 289 ms
77,184 KB
testcase_14 AC 113 ms
74,112 KB
testcase_15 AC 104 ms
72,192 KB
testcase_16 AC 120 ms
75,648 KB
testcase_17 AC 142 ms
76,928 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
52,096 KB
testcase_20 AC 41 ms
52,480 KB
testcase_21 AC 66 ms
66,176 KB
testcase_22 AC 71 ms
68,864 KB
testcase_23 AC 69 ms
68,352 KB
testcase_24 AC 414 ms
76,928 KB
testcase_25 AC 413 ms
77,184 KB
testcase_26 AC 376 ms
77,056 KB
testcase_27 AC 456 ms
76,928 KB
testcase_28 AC 311 ms
77,056 KB
testcase_29 AC 346 ms
77,184 KB
testcase_30 AC 40 ms
51,968 KB
testcase_31 AC 40 ms
52,096 KB
testcase_32 AC 68 ms
67,584 KB
testcase_33 AC 70 ms
68,480 KB
testcase_34 AC 68 ms
66,816 KB
testcase_35 AC 414 ms
77,312 KB
testcase_36 AC 421 ms
77,184 KB
testcase_37 AC 296 ms
76,800 KB
testcase_38 AC 385 ms
77,184 KB
testcase_39 AC 421 ms
77,184 KB
testcase_40 AC 342 ms
77,056 KB
testcase_41 AC 302 ms
77,360 KB
testcase_42 AC 318 ms
77,184 KB
testcase_43 AC 391 ms
77,396 KB
testcase_44 AC 312 ms
76,928 KB
testcase_45 AC 388 ms
76,928 KB
testcase_46 AC 303 ms
77,016 KB
testcase_47 AC 315 ms
77,056 KB
testcase_48 AC 313 ms
77,184 KB
testcase_49 AC 314 ms
77,184 KB
testcase_50 AC 342 ms
77,328 KB
testcase_51 AC 351 ms
76,928 KB
testcase_52 AC 218 ms
76,928 KB
testcase_53 AC 238 ms
76,800 KB
testcase_54 AC 175 ms
71,680 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