結果

問題 No.2667 Constrained Permutation
ユーザー suisensuisen
提出日時 2023-10-29 22:05:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,196 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 560 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 116,792 KB
最終ジャッジ日時 2024-09-28 02:16:17
合計ジャッジ時間 25,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 67 ms
66,420 KB
testcase_03 AC 112 ms
76,160 KB
testcase_04 AC 125 ms
77,696 KB
testcase_05 AC 62 ms
64,384 KB
testcase_06 AC 133 ms
77,440 KB
testcase_07 AC 56 ms
60,160 KB
testcase_08 AC 135 ms
77,952 KB
testcase_09 AC 140 ms
77,824 KB
testcase_10 AC 80 ms
69,376 KB
testcase_11 AC 124 ms
76,928 KB
testcase_12 AC 440 ms
88,320 KB
testcase_13 AC 139 ms
77,696 KB
testcase_14 AC 1,191 ms
116,792 KB
testcase_15 AC 767 ms
97,300 KB
testcase_16 AC 610 ms
92,548 KB
testcase_17 AC 286 ms
82,048 KB
testcase_18 AC 1,194 ms
113,452 KB
testcase_19 AC 1,150 ms
112,944 KB
testcase_20 AC 1,196 ms
116,584 KB
testcase_21 AC 945 ms
112,272 KB
testcase_22 AC 960 ms
103,312 KB
testcase_23 AC 955 ms
103,064 KB
testcase_24 AC 533 ms
97,060 KB
testcase_25 AC 954 ms
110,424 KB
testcase_26 AC 1,149 ms
114,056 KB
testcase_27 AC 1,173 ms
115,204 KB
testcase_28 AC 442 ms
100,992 KB
testcase_29 AC 429 ms
97,708 KB
testcase_30 AC 485 ms
100,632 KB
testcase_31 AC 299 ms
91,520 KB
testcase_32 AC 137 ms
78,464 KB
testcase_33 AC 686 ms
94,464 KB
testcase_34 AC 403 ms
86,516 KB
testcase_35 AC 457 ms
88,140 KB
testcase_36 AC 429 ms
87,296 KB
testcase_37 AC 444 ms
89,216 KB
testcase_38 AC 781 ms
95,888 KB
testcase_39 AC 157 ms
78,208 KB
testcase_40 AC 301 ms
85,248 KB
testcase_41 AC 470 ms
91,904 KB
testcase_42 AC 607 ms
97,768 KB
testcase_43 AC 846 ms
108,588 KB
testcase_44 AC 414 ms
88,576 KB
testcase_45 AC 144 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

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

    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 None
        heapq.heappop(pq)
    return k

M = 10 ** 9 + 1

min_k = get_min_k()
if min_k is None:
    print(0)
else:
    lr = [(M - r, M - l) for l, r in lr]
    max_k = get_min_k()
    assert max_k is not None
    max_k = M - max_k - (n + 1)
    print(max_k - min_k + 1)
0