結果

問題 No.2667 Constrained Permutation
ユーザー 👑 rin204rin204
提出日時 2024-03-08 21:58:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 81,952 KB
実行使用メモリ 119,268 KB
最終ジャッジ日時 2024-09-29 19:37:44
合計ジャッジ時間 12,155 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 53 ms
61,184 KB
testcase_03 AC 65 ms
66,432 KB
testcase_04 AC 95 ms
76,800 KB
testcase_05 AC 53 ms
60,416 KB
testcase_06 AC 93 ms
76,928 KB
testcase_07 AC 47 ms
55,168 KB
testcase_08 AC 94 ms
76,928 KB
testcase_09 AC 96 ms
77,128 KB
testcase_10 AC 54 ms
57,856 KB
testcase_11 AC 88 ms
77,184 KB
testcase_12 AC 204 ms
87,424 KB
testcase_13 AC 89 ms
77,184 KB
testcase_14 AC 350 ms
108,976 KB
testcase_15 AC 351 ms
95,044 KB
testcase_16 AC 283 ms
91,032 KB
testcase_17 AC 171 ms
81,408 KB
testcase_18 AC 365 ms
106,276 KB
testcase_19 AC 463 ms
100,256 KB
testcase_20 AC 456 ms
103,384 KB
testcase_21 AC 423 ms
101,600 KB
testcase_22 AC 445 ms
101,544 KB
testcase_23 AC 445 ms
101,416 KB
testcase_24 AC 189 ms
94,080 KB
testcase_25 AC 287 ms
109,012 KB
testcase_26 AC 332 ms
119,268 KB
testcase_27 AC 341 ms
110,896 KB
testcase_28 AC 197 ms
83,456 KB
testcase_29 AC 188 ms
83,200 KB
testcase_30 AC 208 ms
83,456 KB
testcase_31 AC 153 ms
80,512 KB
testcase_32 AC 87 ms
77,312 KB
testcase_33 AC 393 ms
100,104 KB
testcase_34 AC 159 ms
79,988 KB
testcase_35 AC 302 ms
91,152 KB
testcase_36 AC 271 ms
90,516 KB
testcase_37 AC 286 ms
92,072 KB
testcase_38 AC 364 ms
93,188 KB
testcase_39 AC 110 ms
77,108 KB
testcase_40 AC 158 ms
80,224 KB
testcase_41 AC 210 ms
82,828 KB
testcase_42 AC 242 ms
93,952 KB
testcase_43 AC 315 ms
101,176 KB
testcase_44 AC 208 ms
85,760 KB
testcase_45 AC 105 ms
77,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n = int(input())
L = [0] * n
R = [0] * n
for i in range(n):
    L[i], R[i] = map(int, input().split())


R_ = sorted(R)
ma = min(r - i for i, r in enumerate(R_))
L_ = sorted(L)
mi = max(l - i for i, l in enumerate(L_))


def ok(x):
    for i in range(n):
        L[i] -= x
        R[i] -= x
        L[i] = max(L[i], 0)
        R[i] = min(R[i], n - 1)

    add = [[] for _ in range(n)]
    for l, r in zip(L, R):
        add[l].append(r)

    hq = []
    for i in range(n):
        for x in add[i]:
            heappush(hq, x)
        while hq and hq[0] < i:
            heappop(hq)
        if not hq:
            return False

        heappop(hq)
    return True


if mi <= ma and ok(ma):
    print(ma - mi + 1)
else:
    print(0)
0