結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,964 KB
testcase_01 AC 38 ms
53,408 KB
testcase_02 AC 51 ms
63,388 KB
testcase_03 AC 44 ms
59,192 KB
testcase_04 AC 38 ms
53,216 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 50 ms
63,756 KB
testcase_07 AC 37 ms
52,752 KB
testcase_08 AC 48 ms
62,716 KB
testcase_09 AC 76 ms
73,304 KB
testcase_10 AC 70 ms
71,488 KB
testcase_11 AC 71 ms
72,100 KB
testcase_12 AC 177 ms
76,560 KB
testcase_13 AC 437 ms
77,464 KB
testcase_14 AC 132 ms
76,300 KB
testcase_15 AC 115 ms
76,088 KB
testcase_16 AC 130 ms
76,512 KB
testcase_17 AC 153 ms
77,064 KB
testcase_18 AC 39 ms
53,016 KB
testcase_19 AC 39 ms
53,292 KB
testcase_20 AC 39 ms
52,960 KB
testcase_21 AC 67 ms
69,996 KB
testcase_22 AC 69 ms
73,312 KB
testcase_23 AC 69 ms
72,124 KB
testcase_24 AC 505 ms
77,408 KB
testcase_25 AC 522 ms
77,108 KB
testcase_26 AC 459 ms
76,976 KB
testcase_27 AC 523 ms
77,308 KB
testcase_28 AC 398 ms
77,024 KB
testcase_29 AC 360 ms
77,008 KB
testcase_30 AC 39 ms
53,212 KB
testcase_31 AC 38 ms
53,184 KB
testcase_32 AC 68 ms
72,052 KB
testcase_33 AC 70 ms
72,884 KB
testcase_34 AC 67 ms
69,540 KB
testcase_35 AC 419 ms
77,024 KB
testcase_36 AC 574 ms
77,024 KB
testcase_37 AC 445 ms
77,032 KB
testcase_38 AC 643 ms
77,068 KB
testcase_39 AC 638 ms
77,108 KB
testcase_40 AC 518 ms
76,892 KB
testcase_41 AC 433 ms
77,204 KB
testcase_42 AC 443 ms
77,452 KB
testcase_43 AC 432 ms
77,032 KB
testcase_44 AC 437 ms
77,040 KB
testcase_45 AC 438 ms
77,476 KB
testcase_46 AC 353 ms
77,168 KB
testcase_47 AC 377 ms
77,412 KB
testcase_48 AC 359 ms
77,004 KB
testcase_49 AC 365 ms
77,096 KB
testcase_50 AC 367 ms
77,360 KB
testcase_51 AC 407 ms
77,500 KB
testcase_52 AC 268 ms
76,736 KB
testcase_53 AC 291 ms
76,948 KB
testcase_54 AC 113 ms
71,432 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

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

    def chmax(arr, i, val):
        if val < 0: return
        if val > arr[i]: arr[i] = val

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

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

main()
0