結果

問題 No.951 【本日限定】1枚頼むともう1枚無料!
ユーザー H3PO4H3PO4
提出日時 2021-07-20 12:56:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 717 ms / 2,000 ms
コード長 469 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,604 KB
最終ジャッジ日時 2024-07-17 13:41:30
合計ジャッジ時間 36,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 529 ms
44,216 KB
testcase_01 AC 528 ms
44,092 KB
testcase_02 AC 532 ms
44,352 KB
testcase_03 AC 525 ms
44,348 KB
testcase_04 AC 533 ms
44,604 KB
testcase_05 AC 532 ms
44,444 KB
testcase_06 AC 521 ms
44,356 KB
testcase_07 AC 527 ms
44,124 KB
testcase_08 AC 529 ms
44,468 KB
testcase_09 AC 530 ms
44,228 KB
testcase_10 AC 528 ms
44,344 KB
testcase_11 AC 531 ms
44,096 KB
testcase_12 AC 560 ms
44,340 KB
testcase_13 AC 645 ms
44,092 KB
testcase_14 AC 553 ms
44,340 KB
testcase_15 AC 545 ms
44,012 KB
testcase_16 AC 558 ms
44,220 KB
testcase_17 AC 603 ms
44,472 KB
testcase_18 AC 534 ms
44,092 KB
testcase_19 AC 534 ms
44,348 KB
testcase_20 AC 528 ms
44,088 KB
testcase_21 AC 525 ms
44,088 KB
testcase_22 AC 535 ms
44,472 KB
testcase_23 AC 537 ms
44,220 KB
testcase_24 AC 684 ms
44,088 KB
testcase_25 AC 685 ms
44,476 KB
testcase_26 AC 668 ms
44,344 KB
testcase_27 AC 678 ms
44,348 KB
testcase_28 AC 651 ms
43,960 KB
testcase_29 AC 655 ms
44,220 KB
testcase_30 AC 537 ms
44,084 KB
testcase_31 AC 538 ms
44,476 KB
testcase_32 AC 528 ms
44,216 KB
testcase_33 AC 543 ms
44,600 KB
testcase_34 AC 537 ms
44,080 KB
testcase_35 AC 669 ms
44,224 KB
testcase_36 AC 665 ms
43,964 KB
testcase_37 AC 664 ms
44,352 KB
testcase_38 AC 672 ms
44,356 KB
testcase_39 AC 673 ms
44,344 KB
testcase_40 AC 675 ms
44,468 KB
testcase_41 AC 676 ms
44,092 KB
testcase_42 AC 717 ms
44,216 KB
testcase_43 AC 680 ms
44,216 KB
testcase_44 AC 671 ms
44,348 KB
testcase_45 AC 677 ms
44,216 KB
testcase_46 AC 655 ms
44,468 KB
testcase_47 AC 652 ms
44,344 KB
testcase_48 AC 655 ms
44,352 KB
testcase_49 AC 645 ms
44,476 KB
testcase_50 AC 645 ms
44,472 KB
testcase_51 AC 650 ms
44,088 KB
testcase_52 AC 660 ms
44,084 KB
testcase_53 AC 686 ms
44,092 KB
testcase_54 AC 629 ms
44,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, K = map(int, input().split())
INF = 10 ** 9
pizza = [tuple(map(int, input().split())) for _ in range(N)]
pizza.sort(key=lambda x: -x[0])

dp0 = np.zeros(K + 1, dtype=int)
dp1 = np.full(K + 1, -INF, dtype=int)
for p, d in pizza:
    new_dp0 = dp0.copy()
    new_dp1 = dp1.copy()
    new_dp1[p:] = np.maximum(new_dp1[p:], dp0[:-p] + d)
    new_dp0 = np.maximum(new_dp0, dp1 + d)
    dp0 = new_dp0
    dp1 = new_dp1
print(max(dp0.max(), dp1.max()))
0