結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-04 13:37:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 522 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,384 KB
最終ジャッジ日時 2024-09-14 23:36:20
合計ジャッジ時間 35,804 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 528 ms
44,248 KB
testcase_01 AC 518 ms
43,872 KB
testcase_02 AC 519 ms
44,124 KB
testcase_03 AC 522 ms
44,132 KB
testcase_04 AC 521 ms
44,248 KB
testcase_05 AC 518 ms
43,984 KB
testcase_06 AC 520 ms
44,384 KB
testcase_07 AC 525 ms
44,256 KB
testcase_08 AC 526 ms
44,252 KB
testcase_09 AC 534 ms
44,004 KB
testcase_10 AC 536 ms
43,864 KB
testcase_11 AC 542 ms
44,264 KB
testcase_12 AC 560 ms
44,116 KB
testcase_13 AC 639 ms
43,740 KB
testcase_14 AC 547 ms
44,008 KB
testcase_15 AC 552 ms
44,252 KB
testcase_16 AC 560 ms
43,876 KB
testcase_17 AC 586 ms
44,280 KB
testcase_18 AC 521 ms
44,252 KB
testcase_19 AC 527 ms
44,380 KB
testcase_20 AC 524 ms
44,260 KB
testcase_21 AC 527 ms
43,868 KB
testcase_22 AC 559 ms
44,316 KB
testcase_23 AC 552 ms
43,864 KB
testcase_24 AC 657 ms
44,252 KB
testcase_25 AC 661 ms
44,256 KB
testcase_26 AC 658 ms
44,248 KB
testcase_27 AC 652 ms
44,260 KB
testcase_28 AC 642 ms
43,868 KB
testcase_29 AC 644 ms
43,992 KB
testcase_30 AC 523 ms
44,252 KB
testcase_31 AC 531 ms
44,256 KB
testcase_32 AC 534 ms
44,256 KB
testcase_33 AC 534 ms
43,868 KB
testcase_34 AC 537 ms
44,344 KB
testcase_35 AC 667 ms
44,008 KB
testcase_36 AC 665 ms
44,128 KB
testcase_37 AC 667 ms
44,260 KB
testcase_38 AC 663 ms
44,128 KB
testcase_39 AC 685 ms
43,872 KB
testcase_40 AC 665 ms
43,868 KB
testcase_41 AC 662 ms
44,288 KB
testcase_42 AC 655 ms
44,124 KB
testcase_43 AC 654 ms
43,996 KB
testcase_44 AC 655 ms
43,996 KB
testcase_45 AC 658 ms
44,264 KB
testcase_46 AC 635 ms
43,996 KB
testcase_47 AC 642 ms
43,876 KB
testcase_48 AC 634 ms
43,884 KB
testcase_49 AC 635 ms
44,252 KB
testcase_50 AC 633 ms
44,248 KB
testcase_51 AC 637 ms
43,996 KB
testcase_52 AC 648 ms
43,996 KB
testcase_53 AC 659 ms
44,180 KB
testcase_54 AC 608 ms
43,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
import sys
input = sys.stdin.buffer.readline
inf = 10**18

N, K = map(int, input().split())
PD = list(tuple(map(int, input().split())) for _ in range(N))
PD.sort(reverse=True)

dp0 = np.full(K + 1, -inf, dtype=np.int64)
dp1 = np.full_like(dp0, -inf)
dp0[0] = 0

for p, d in PD:
    newDP0 = np.copy(dp0)
    newDP1 = np.copy(dp1)
    newDP1[p:] = np.maximum(newDP1[p:], dp0[:-p] + d)
    newDP0 = np.maximum(newDP0, dp1 + d)
    dp0 = newDP0
    dp1 = newDP1

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