結果

問題 No.2667 Constrained Permutation
ユーザー ゼットゼット
提出日時 2024-03-08 22:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 132,224 KB
最終ジャッジ日時 2024-09-29 20:06:27
合計ジャッジ時間 13,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,480 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 141 ms
77,132 KB
testcase_03 AC 119 ms
76,824 KB
testcase_04 AC 147 ms
77,828 KB
testcase_05 AC 121 ms
77,040 KB
testcase_06 AC 147 ms
78,004 KB
testcase_07 AC 48 ms
55,552 KB
testcase_08 AC 101 ms
76,928 KB
testcase_09 AC 102 ms
76,748 KB
testcase_10 AC 59 ms
59,264 KB
testcase_11 AC 95 ms
76,900 KB
testcase_12 AC 150 ms
88,196 KB
testcase_13 AC 71 ms
71,296 KB
testcase_14 AC 298 ms
114,552 KB
testcase_15 AC 419 ms
116,728 KB
testcase_16 AC 393 ms
104,220 KB
testcase_17 AC 203 ms
84,488 KB
testcase_18 AC 318 ms
115,192 KB
testcase_19 AC 311 ms
115,064 KB
testcase_20 AC 311 ms
115,452 KB
testcase_21 AC 544 ms
132,096 KB
testcase_22 AC 563 ms
132,128 KB
testcase_23 AC 549 ms
132,224 KB
testcase_24 AC 169 ms
90,844 KB
testcase_25 AC 269 ms
103,932 KB
testcase_26 AC 310 ms
115,340 KB
testcase_27 AC 310 ms
114,888 KB
testcase_28 AC 250 ms
105,792 KB
testcase_29 AC 234 ms
99,996 KB
testcase_30 AC 258 ms
103,580 KB
testcase_31 AC 190 ms
94,396 KB
testcase_32 AC 93 ms
78,336 KB
testcase_33 AC 525 ms
131,320 KB
testcase_34 AC 194 ms
94,388 KB
testcase_35 AC 344 ms
106,140 KB
testcase_36 AC 365 ms
104,692 KB
testcase_37 AC 355 ms
110,856 KB
testcase_38 AC 257 ms
105,240 KB
testcase_39 AC 73 ms
71,680 KB
testcase_40 AC 195 ms
94,640 KB
testcase_41 AC 265 ms
107,644 KB
testcase_42 AC 193 ms
94,264 KB
testcase_43 AC 253 ms
103,700 KB
testcase_44 AC 152 ms
88,576 KB
testcase_45 AC 69 ms
71,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
l=0
r=10**10
L=[]
R=[]
h=[]
u=10**10
for i in range(N):
  a,b=map(int,input().split())
  L.append(a-1)
  R.append(b-1)
  h.append([a-1,b-1])
  u=min(u,a-1)
L.sort()
R.sort()
for i in range(N):
  l=max(l,L[i]-i)
for i in range(N):
  r=min(r,R[i]-i)
if l>r:
  print(0)
  exit()
ans=r-l+1
if ans>10**2:
  print(ans)
  exit()
p=0
for i in range(N):
  h[i][0]-=u
  h[i][1]-=u
  p=max(p,h[i][0])
if p>10**7:
  print(ans)
  exit()
G=[[] for i in range(p+1)]
for i in range(N):
  x,y=h[i][:]
  G[x].append(y)
result=0
from heapq import heappush,heappop
for k in range(l-u,r-u+1):
  S=[]
  b=True
  for x in range(k):
    for y in G[x]:
      heappush(S,y)
  for i in range(N):
    t=i+k
    if t<=p:
      for y in G[t]:
        heappush(S,y)
    if len(S)==0:
      b=False
      break
    w=heappop(S)
    if w<t:
      b=False
      break
  if b==True:
    result+=1
print(result)
0