結果

問題 No.1715 Dinner 2
ユーザー mahiro72mahiro72
提出日時 2021-10-23 03:07:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 786 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 78,584 KB
最終ジャッジ日時 2024-09-24 14:21:26
合計ジャッジ時間 7,620 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,344 KB
testcase_01 AC 38 ms
54,112 KB
testcase_02 AC 63 ms
71,600 KB
testcase_03 AC 37 ms
53,724 KB
testcase_04 AC 55 ms
69,048 KB
testcase_05 AC 45 ms
62,080 KB
testcase_06 AC 38 ms
54,024 KB
testcase_07 AC 56 ms
68,984 KB
testcase_08 AC 43 ms
61,320 KB
testcase_09 AC 38 ms
54,380 KB
testcase_10 AC 53 ms
65,228 KB
testcase_11 AC 359 ms
77,512 KB
testcase_12 AC 316 ms
77,532 KB
testcase_13 AC 271 ms
77,768 KB
testcase_14 AC 271 ms
77,616 KB
testcase_15 AC 330 ms
78,192 KB
testcase_16 AC 349 ms
78,028 KB
testcase_17 AC 284 ms
77,136 KB
testcase_18 AC 127 ms
77,428 KB
testcase_19 AC 118 ms
76,936 KB
testcase_20 AC 142 ms
77,904 KB
testcase_21 AC 73 ms
76,188 KB
testcase_22 AC 116 ms
76,956 KB
testcase_23 AC 126 ms
77,000 KB
testcase_24 AC 150 ms
77,668 KB
testcase_25 AC 142 ms
76,832 KB
testcase_26 AC 140 ms
76,924 KB
testcase_27 AC 138 ms
77,236 KB
testcase_28 AC 162 ms
77,380 KB
testcase_29 AC 158 ms
76,640 KB
testcase_30 AC 140 ms
77,196 KB
testcase_31 AC 144 ms
76,968 KB
testcase_32 AC 427 ms
78,584 KB
testcase_33 AC 423 ms
78,264 KB
testcase_34 AC 419 ms
78,272 KB
testcase_35 AC 413 ms
78,280 KB
testcase_36 AC 35 ms
54,748 KB
testcase_37 AC 37 ms
53,212 KB
testcase_38 AC 145 ms
77,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import nlargest

N, D = map(int, input().split())
PQs = [tuple(map(int, input().split())) for _ in range(N)]

# dp[最後の料理] = 元気度
# 元気度の下界を二分探索

# new_dp[料理] = max dp[他の料理] + 差分 (下界に違反しない場合)

INF = 10 ** 9

def isok(lb):
    dp = [0] * N
    for _ in range(D):
        new_dp = [-INF] * N
        M1, M2 = nlargest(2, dp)
        if M1 == -INF:
            return False
        for i, (P, Q) in enumerate(PQs):
            M = M1 if (M1 != dp[i]) else M2
            if M - P >= lb:
                new_dp[i] = M - P + Q
        dp = new_dp
    return max(dp) > -INF


ok = -INF
ng = 1
while ng - ok > 1:
    mid = (ng + ok) // 2
    if isok(mid):
        ok  = mid
    else:
        ng = mid

print(ok)
0