結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,204 KB
testcase_01 AC 41 ms
53,696 KB
testcase_02 AC 55 ms
64,440 KB
testcase_03 AC 46 ms
59,352 KB
testcase_04 AC 44 ms
53,940 KB
testcase_05 AC 41 ms
53,552 KB
testcase_06 AC 54 ms
63,188 KB
testcase_07 AC 41 ms
53,824 KB
testcase_08 AC 53 ms
63,172 KB
testcase_09 AC 82 ms
72,476 KB
testcase_10 AC 75 ms
71,220 KB
testcase_11 AC 77 ms
72,368 KB
testcase_12 AC 190 ms
76,508 KB
testcase_13 AC 442 ms
77,324 KB
testcase_14 AC 138 ms
75,876 KB
testcase_15 AC 124 ms
75,932 KB
testcase_16 AC 140 ms
76,600 KB
testcase_17 AC 158 ms
76,768 KB
testcase_18 AC 41 ms
53,496 KB
testcase_19 AC 41 ms
52,956 KB
testcase_20 AC 41 ms
52,144 KB
testcase_21 AC 71 ms
69,332 KB
testcase_22 AC 74 ms
71,980 KB
testcase_23 AC 74 ms
72,212 KB
testcase_24 AC 511 ms
77,296 KB
testcase_25 AC 525 ms
76,900 KB
testcase_26 AC 468 ms
77,232 KB
testcase_27 AC 529 ms
77,020 KB
testcase_28 AC 408 ms
77,180 KB
testcase_29 AC 366 ms
77,324 KB
testcase_30 AC 41 ms
53,500 KB
testcase_31 AC 41 ms
53,452 KB
testcase_32 AC 74 ms
72,516 KB
testcase_33 AC 75 ms
72,544 KB
testcase_34 AC 71 ms
69,848 KB
testcase_35 AC 433 ms
76,968 KB
testcase_36 AC 584 ms
77,052 KB
testcase_37 AC 448 ms
76,892 KB
testcase_38 AC 646 ms
76,984 KB
testcase_39 AC 641 ms
77,372 KB
testcase_40 AC 526 ms
77,416 KB
testcase_41 AC 442 ms
77,232 KB
testcase_42 AC 454 ms
77,100 KB
testcase_43 AC 442 ms
76,868 KB
testcase_44 AC 446 ms
77,340 KB
testcase_45 AC 440 ms
76,904 KB
testcase_46 AC 358 ms
77,116 KB
testcase_47 AC 384 ms
76,956 KB
testcase_48 AC 366 ms
77,076 KB
testcase_49 AC 370 ms
76,968 KB
testcase_50 AC 371 ms
77,548 KB
testcase_51 AC 414 ms
77,032 KB
testcase_52 AC 274 ms
76,884 KB
testcase_53 AC 295 ms
76,996 KB
testcase_54 AC 117 ms
72,240 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