結果

問題 No.2667 Constrained Permutation
ユーザー suisensuisen
提出日時 2023-11-18 03:43:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 598 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,196 KB
最終ジャッジ日時 2024-09-28 02:17:37
合計ジャッジ時間 19,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 56 ms
62,720 KB
testcase_03 AC 82 ms
66,688 KB
testcase_04 AC 97 ms
76,672 KB
testcase_05 AC 54 ms
62,320 KB
testcase_06 AC 101 ms
76,672 KB
testcase_07 AC 50 ms
60,160 KB
testcase_08 AC 97 ms
76,928 KB
testcase_09 AC 98 ms
76,800 KB
testcase_10 AC 59 ms
63,232 KB
testcase_11 AC 92 ms
76,544 KB
testcase_12 AC 315 ms
88,064 KB
testcase_13 AC 104 ms
77,276 KB
testcase_14 AC 759 ms
113,088 KB
testcase_15 AC 596 ms
101,932 KB
testcase_16 AC 452 ms
93,824 KB
testcase_17 AC 209 ms
81,280 KB
testcase_18 AC 813 ms
114,200 KB
testcase_19 AC 840 ms
108,728 KB
testcase_20 AC 823 ms
111,208 KB
testcase_21 AC 736 ms
108,044 KB
testcase_22 AC 783 ms
108,248 KB
testcase_23 AC 781 ms
108,444 KB
testcase_24 AC 387 ms
91,800 KB
testcase_25 AC 705 ms
110,576 KB
testcase_26 AC 809 ms
115,196 KB
testcase_27 AC 828 ms
114,704 KB
testcase_28 AC 436 ms
100,992 KB
testcase_29 AC 414 ms
97,824 KB
testcase_30 AC 471 ms
100,880 KB
testcase_31 AC 289 ms
91,340 KB
testcase_32 AC 121 ms
78,848 KB
testcase_33 AC 651 ms
94,336 KB
testcase_34 AC 380 ms
86,624 KB
testcase_35 AC 442 ms
88,400 KB
testcase_36 AC 409 ms
87,424 KB
testcase_37 AC 423 ms
89,728 KB
testcase_38 AC 594 ms
100,244 KB
testcase_39 AC 113 ms
77,392 KB
testcase_40 AC 291 ms
85,248 KB
testcase_41 AC 445 ms
92,032 KB
testcase_42 AC 405 ms
97,132 KB
testcase_43 AC 538 ms
105,904 KB
testcase_44 AC 309 ms
88,064 KB
testcase_45 AC 108 ms
77,212 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

min_k = get_min_k()
if min_k is None:
    print(0)
else:
    max_k = min(r - (i + 1) for i, r in enumerate(sorted(r for _, r in lr)))
    print(max_k - min_k + 1)
0