結果

問題 No.2667 Constrained Permutation
ユーザー ゼットゼット
提出日時 2024-03-08 22:12:04
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 852 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 848,640 KB
最終ジャッジ日時 2024-09-29 19:44:32
合計ジャッジ時間 10,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,228 KB
testcase_01 AC 39 ms
52,740 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 45 ms
56,580 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 56 ms
60,672 KB
testcase_11 WA -
testcase_12 AC 148 ms
88,804 KB
testcase_13 AC 66 ms
72,412 KB
testcase_14 AC 289 ms
114,688 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 300 ms
115,328 KB
testcase_19 AC 302 ms
115,200 KB
testcase_20 AC 300 ms
115,836 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 162 ms
90,976 KB
testcase_25 AC 254 ms
104,020 KB
testcase_26 AC 302 ms
115,468 KB
testcase_27 AC 298 ms
115,588 KB
testcase_28 AC 249 ms
106,008 KB
testcase_29 AC 230 ms
100,188 KB
testcase_30 AC 252 ms
103,844 KB
testcase_31 AC 183 ms
94,392 KB
testcase_32 AC 89 ms
78,760 KB
testcase_33 AC 361 ms
126,460 KB
testcase_34 AC 191 ms
94,388 KB
testcase_35 AC 232 ms
97,300 KB
testcase_36 AC 240 ms
98,456 KB
testcase_37 AC 276 ms
110,616 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(ans+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