結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,464 KB
testcase_01 AC 38 ms
52,260 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 140 ms
88,180 KB
testcase_13 AC 69 ms
71,048 KB
testcase_14 AC 273 ms
114,432 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 272 ms
115,064 KB
testcase_19 AC 274 ms
114,684 KB
testcase_20 AC 279 ms
115,960 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 149 ms
90,852 KB
testcase_25 AC 231 ms
103,888 KB
testcase_26 AC 274 ms
114,960 KB
testcase_27 AC 273 ms
115,140 KB
testcase_28 AC 238 ms
105,564 KB
testcase_29 AC 206 ms
100,124 KB
testcase_30 AC 229 ms
103,456 KB
testcase_31 AC 167 ms
94,400 KB
testcase_32 AC 86 ms
78,500 KB
testcase_33 AC 325 ms
126,200 KB
testcase_34 AC 170 ms
94,264 KB
testcase_35 AC 212 ms
97,048 KB
testcase_36 AC 211 ms
98,840 KB
testcase_37 AC 258 ms
110,224 KB
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 171 ms
94,264 KB
testcase_41 AC 237 ms
107,900 KB
testcase_42 AC 171 ms
94,396 KB
testcase_43 AC 224 ms
103,572 KB
testcase_44 AC 132 ms
88,280 KB
testcase_45 AC 64 ms
72,408 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]-=l
  h[i][1]-=l
  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