結果

問題 No.2667 Constrained Permutation
ユーザー suisensuisen
提出日時 2023-10-29 22:08:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 727 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 197,340 KB
最終ジャッジ日時 2024-09-28 02:17:15
合計ジャッジ時間 7,265 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,984 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 92 ms
76,240 KB
testcase_03 AC 117 ms
76,688 KB
testcase_04 AC 152 ms
77,660 KB
testcase_05 AC 81 ms
72,832 KB
testcase_06 AC 160 ms
78,080 KB
testcase_07 AC 53 ms
62,552 KB
testcase_08 AC 103 ms
77,036 KB
testcase_09 AC 104 ms
77,152 KB
testcase_10 AC 68 ms
67,712 KB
testcase_11 AC 98 ms
76,800 KB
testcase_12 AC 1,092 ms
105,248 KB
testcase_13 AC 173 ms
77,696 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

n = int(input())
lr = [tuple(map(int, input().split())) for _ in range(n)]

def check(k: int):
    pq = []
    j = 0
    for v in range(k + 1, k + n + 1):
        while j < n and lr[j][0] <= v:
            heapq.heappush(pq, lr[j][1])
            j += 1
        if pq[0] < v:
            return False
        heapq.heappop(pq)
    return True


def get_min_k():
    lr.sort(key=lambda t: t[0])
    k = max(lr[i][0] - (i + 1) for i in range(n))
    return k if check(k) else None

min_k = get_min_k()
if min_k is None:
    print(0)
else:
    ok, ng = min_k, 10 ** 9
    while ng - ok > 1:
        k = (ok + ng) >> 1
        if check(k):
            ok = k
        else:
            ng = k
    print(ok - min_k + 1)
0