結果

問題 No.1244 Black Segment
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-11 16:11:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-10-11 16:11:44
合計ジャッジ時間 8,742 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 AC 41 ms
53,888 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 45 ms
54,144 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 41 ms
53,760 KB
testcase_11 AC 41 ms
54,016 KB
testcase_12 AC 41 ms
53,632 KB
testcase_13 WA -
testcase_14 AC 178 ms
82,432 KB
testcase_15 WA -
testcase_16 AC 183 ms
82,540 KB
testcase_17 AC 89 ms
77,464 KB
testcase_18 AC 224 ms
85,860 KB
testcase_19 AC 262 ms
89,020 KB
testcase_20 AC 255 ms
88,052 KB
testcase_21 AC 233 ms
88,148 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 216 ms
88,620 KB
testcase_28 WA -
testcase_29 AC 230 ms
88,424 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 286 ms
89,952 KB
testcase_35 AC 248 ms
89,984 KB
testcase_36 AC 254 ms
89,856 KB
testcase_37 AC 262 ms
89,728 KB
testcase_38 AC 276 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