結果

問題 No.1244 Black Segment
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-11 16:47:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 475 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-10-11 16:47:29
合計ジャッジ時間 8,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 44 ms
53,376 KB
testcase_02 AC 44 ms
53,632 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
54,272 KB
testcase_05 AC 45 ms
53,888 KB
testcase_06 AC 45 ms
53,888 KB
testcase_07 AC 45 ms
53,504 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 44 ms
53,632 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 45 ms
53,760 KB
testcase_12 AC 45 ms
53,504 KB
testcase_13 AC 100 ms
77,056 KB
testcase_14 AC 187 ms
82,304 KB
testcase_15 AC 103 ms
77,184 KB
testcase_16 AC 193 ms
82,304 KB
testcase_17 AC 101 ms
77,184 KB
testcase_18 AC 216 ms
85,376 KB
testcase_19 AC 261 ms
88,448 KB
testcase_20 AC 248 ms
87,680 KB
testcase_21 AC 230 ms
87,936 KB
testcase_22 AC 268 ms
88,064 KB
testcase_23 AC 274 ms
87,424 KB
testcase_24 AC 264 ms
89,344 KB
testcase_25 AC 263 ms
89,984 KB
testcase_26 AC 224 ms
88,320 KB
testcase_27 AC 215 ms
88,832 KB
testcase_28 AC 283 ms
89,856 KB
testcase_29 AC 237 ms
87,936 KB
testcase_30 AC 259 ms
88,448 KB
testcase_31 AC 261 ms
88,960 KB
testcase_32 AC 257 ms
88,960 KB
testcase_33 AC 254 ms
88,192 KB
testcase_34 AC 277 ms
90,112 KB
testcase_35 AC 261 ms
89,728 KB
testcase_36 AC 259 ms
89,600 KB
testcase_37 AC 262 ms
89,984 KB
testcase_38 AC 261 ms
90,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m,a,b=map(int,input().split())
g=[[] for _ in range(n+2)]
q=deque([])
for _ in range(m):
  l,r=map(int,input().split())
  g[l].append(r+1)
  g[r+1].append(l)
  if l<=a:
    q.append((0,l))

d=[-1]*(n+2)
while q:
  dd,i=q.popleft()
  if 0<=d[i]<=dd:
    continue
  d[i]=dd
  for j in g[i]:
    if d[j]==-1:
      q.append((dd+1,j))

ans=-1
for i in range(b+1,n+2):
  if d[i]>-1:
    if ans==-1:
      ans=d[i]
    ans=min(ans,d[i])

print(ans)
0