結果

問題 No.2667 Constrained Permutation
ユーザー suisensuisen
提出日時 2023-10-29 22:02:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,475 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 116,656 KB
最終ジャッジ日時 2024-09-28 02:16:55
合計ジャッジ時間 28,488 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 37 ms
52,736 KB
testcase_02 AC 62 ms
65,920 KB
testcase_03 AC 83 ms
74,880 KB
testcase_04 AC 116 ms
77,696 KB
testcase_05 AC 61 ms
64,512 KB
testcase_06 AC 110 ms
77,296 KB
testcase_07 AC 50 ms
60,672 KB
testcase_08 AC 114 ms
77,312 KB
testcase_09 AC 116 ms
77,824 KB
testcase_10 AC 72 ms
69,632 KB
testcase_11 AC 108 ms
76,800 KB
testcase_12 AC 520 ms
89,048 KB
testcase_13 AC 128 ms
77,568 KB
testcase_14 AC 1,353 ms
111,868 KB
testcase_15 AC 875 ms
97,576 KB
testcase_16 AC 670 ms
92,340 KB
testcase_17 AC 305 ms
82,688 KB
testcase_18 AC 1,428 ms
114,852 KB
testcase_19 AC 1,457 ms
102,688 KB
testcase_20 AC 1,475 ms
107,704 KB
testcase_21 AC 1,099 ms
103,892 KB
testcase_22 AC 1,064 ms
103,620 KB
testcase_23 AC 1,142 ms
103,828 KB
testcase_24 AC 653 ms
93,028 KB
testcase_25 AC 1,177 ms
107,976 KB
testcase_26 AC 1,416 ms
114,832 KB
testcase_27 AC 1,472 ms
116,656 KB
testcase_28 AC 521 ms
100,992 KB
testcase_29 AC 503 ms
98,432 KB
testcase_30 AC 569 ms
100,856 KB
testcase_31 AC 352 ms
91,264 KB
testcase_32 AC 129 ms
77,440 KB
testcase_33 AC 758 ms
95,104 KB
testcase_34 AC 415 ms
86,528 KB
testcase_35 AC 493 ms
88,180 KB
testcase_36 AC 481 ms
88,064 KB
testcase_37 AC 495 ms
89,728 KB
testcase_38 AC 902 ms
96,632 KB
testcase_39 AC 143 ms
77,696 KB
testcase_40 AC 368 ms
85,316 KB
testcase_41 AC 564 ms
92,160 KB
testcase_42 AC 675 ms
97,792 KB
testcase_43 AC 950 ms
105,256 KB
testcase_44 AC 468 ms
89,856 KB
testcase_45 AC 128 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq

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

def get_min_k():
    lr.sort()
    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