結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 55 ms
62,464 KB
testcase_03 AC 68 ms
67,072 KB
testcase_04 AC 96 ms
77,312 KB
testcase_05 AC 54 ms
61,952 KB
testcase_06 AC 94 ms
76,672 KB
testcase_07 AC 49 ms
60,032 KB
testcase_08 AC 96 ms
77,148 KB
testcase_09 AC 97 ms
76,800 KB
testcase_10 AC 58 ms
62,976 KB
testcase_11 AC 90 ms
76,800 KB
testcase_12 AC 277 ms
87,808 KB
testcase_13 AC 104 ms
77,120 KB
testcase_14 AC 625 ms
113,084 KB
testcase_15 AC 567 ms
102,528 KB
testcase_16 AC 395 ms
94,204 KB
testcase_17 AC 186 ms
81,496 KB
testcase_18 AC 714 ms
114,324 KB
testcase_19 AC 709 ms
109,088 KB
testcase_20 AC 725 ms
111,212 KB
testcase_21 AC 579 ms
107,788 KB
testcase_22 AC 623 ms
108,900 KB
testcase_23 AC 625 ms
108,060 KB
testcase_24 AC 321 ms
91,896 KB
testcase_25 AC 571 ms
110,316 KB
testcase_26 AC 674 ms
115,192 KB
testcase_27 AC 718 ms
114,444 KB
testcase_28 AC 358 ms
100,992 KB
testcase_29 AC 339 ms
98,208 KB
testcase_30 AC 370 ms
100,888 KB
testcase_31 AC 246 ms
91,776 KB
testcase_32 AC 114 ms
78,680 KB
testcase_33 AC 531 ms
94,592 KB
testcase_34 AC 326 ms
86,896 KB
testcase_35 AC 391 ms
88,536 KB
testcase_36 AC 337 ms
87,296 KB
testcase_37 AC 353 ms
89,460 KB
testcase_38 AC 520 ms
100,372 KB
testcase_39 AC 112 ms
77,176 KB
testcase_40 AC 264 ms
85,376 KB
testcase_41 AC 378 ms
92,032 KB
testcase_42 AC 365 ms
96,748 KB
testcase_43 AC 481 ms
105,660 KB
testcase_44 AC 267 ms
87,936 KB
testcase_45 AC 104 ms
77,312 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(l - i for i, (l, _) in enumerate(lr, 1))

    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 for i, r in enumerate(sorted(r for _, r in lr), 1))
    print(max_k - min_k + 1)
0