結果

問題 No.2667 Constrained Permutation
ユーザー ゼットゼット
提出日時 2024-03-08 22:35:14
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 856 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 850,696 KB
最終ジャッジ日時 2024-09-29 20:04:21
合計ジャッジ時間 12,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,736 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 122 ms
77,312 KB
testcase_03 AC 115 ms
76,544 KB
testcase_04 AC 138 ms
77,672 KB
testcase_05 AC 111 ms
76,940 KB
testcase_06 AC 133 ms
77,892 KB
testcase_07 AC 45 ms
55,424 KB
testcase_08 AC 96 ms
76,888 KB
testcase_09 AC 98 ms
77,056 KB
testcase_10 AC 54 ms
58,880 KB
testcase_11 AC 89 ms
76,800 KB
testcase_12 AC 144 ms
88,448 KB
testcase_13 AC 67 ms
71,296 KB
testcase_14 AC 264 ms
114,680 KB
testcase_15 AC 365 ms
117,112 KB
testcase_16 AC 330 ms
104,592 KB
testcase_17 AC 187 ms
84,828 KB
testcase_18 AC 277 ms
115,448 KB
testcase_19 AC 276 ms
115,068 KB
testcase_20 AC 278 ms
116,220 KB
testcase_21 AC 455 ms
132,344 KB
testcase_22 AC 467 ms
132,608 KB
testcase_23 AC 473 ms
132,344 KB
testcase_24 AC 160 ms
91,236 KB
testcase_25 AC 238 ms
104,012 KB
testcase_26 AC 275 ms
115,344 KB
testcase_27 AC 277 ms
116,032 KB
testcase_28 AC 229 ms
106,084 KB
testcase_29 AC 214 ms
100,348 KB
testcase_30 AC 228 ms
103,840 KB
testcase_31 AC 168 ms
94,396 KB
testcase_32 AC 90 ms
78,464 KB
testcase_33 AC 440 ms
131,584 KB
testcase_34 AC 174 ms
94,520 KB
testcase_35 AC 297 ms
106,256 KB
testcase_36 AC 303 ms
105,372 KB
testcase_37 AC 304 ms
111,376 KB
testcase_38 MLE -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
権限があれば一括ダウンロードができます

ソースコード

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])
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