結果

問題 No.1715 Dinner 2
ユーザー mkawa2mkawa2
提出日時 2021-10-23 12:42:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 76,532 KB
最終ジャッジ日時 2024-09-25 03:43:10
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,596 KB
testcase_01 AC 38 ms
52,644 KB
testcase_02 AC 45 ms
61,920 KB
testcase_03 AC 37 ms
53,352 KB
testcase_04 AC 44 ms
59,668 KB
testcase_05 AC 42 ms
58,476 KB
testcase_06 AC 38 ms
52,928 KB
testcase_07 AC 43 ms
61,100 KB
testcase_08 AC 43 ms
58,888 KB
testcase_09 AC 38 ms
53,276 KB
testcase_10 AC 43 ms
59,876 KB
testcase_11 AC 236 ms
76,016 KB
testcase_12 AC 187 ms
75,844 KB
testcase_13 AC 161 ms
76,096 KB
testcase_14 AC 192 ms
76,532 KB
testcase_15 AC 201 ms
75,988 KB
testcase_16 AC 229 ms
76,132 KB
testcase_17 AC 174 ms
75,624 KB
testcase_18 AC 67 ms
73,936 KB
testcase_19 AC 81 ms
75,584 KB
testcase_20 AC 61 ms
71,356 KB
testcase_21 AC 58 ms
67,660 KB
testcase_22 AC 65 ms
73,524 KB
testcase_23 AC 79 ms
75,536 KB
testcase_24 AC 75 ms
76,296 KB
testcase_25 AC 84 ms
75,344 KB
testcase_26 AC 88 ms
75,532 KB
testcase_27 AC 92 ms
75,536 KB
testcase_28 AC 91 ms
75,628 KB
testcase_29 AC 93 ms
75,424 KB
testcase_30 AC 83 ms
75,972 KB
testcase_31 AC 82 ms
75,316 KB
testcase_32 AC 263 ms
76,252 KB
testcase_33 AC 239 ms
76,088 KB
testcase_34 AC 255 ms
76,444 KB
testcase_35 AC 266 ms
76,232 KB
testcase_36 AC 37 ms
52,688 KB
testcase_37 AC 38 ms
53,348 KB
testcase_38 AC 67 ms
75,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
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)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 1 << 63
# md = 998244353
md = 10**9+7

n, d = LI()
pq = LLI(n)

def ok(m):
    mx1, mx2 = 0, -inf
    i1 = -1
    for _ in range(d):
        nmx1 = nmx2 = -inf
        ni1 = -1
        for i, (p, q) in enumerate(pq):
            pre = mx1
            if i == i1: pre = mx2
            if pre-p < m: continue
            cur = pre-p+q
            if cur > nmx1:
                nmx2 = nmx1
                nmx1 = cur
                ni1 = i
            elif cur > nmx2:
                nmx2 = cur
        if nmx1 == -inf: return False
        mx1, mx2, i1 = nmx1, nmx2, ni1
    return True

l, r = -10**9, 0
while l+1 < r:
    m = (l+r)//2
    if ok(m): l = m
    else: r = m
print(l)
0