結果

問題 No.1244 Black Segment
ユーザー raven7959raven7959
提出日時 2021-10-02 08:06:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 266 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-07-20 02:30:14
合計ジャッジ時間 8,822 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,632 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 49 ms
53,504 KB
testcase_03 AC 43 ms
53,504 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 44 ms
53,632 KB
testcase_07 AC 43 ms
54,016 KB
testcase_08 AC 42 ms
53,632 KB
testcase_09 AC 42 ms
53,632 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 91 ms
77,056 KB
testcase_14 AC 154 ms
79,232 KB
testcase_15 AC 90 ms
76,800 KB
testcase_16 AC 158 ms
79,360 KB
testcase_17 AC 88 ms
77,184 KB
testcase_18 AC 188 ms
85,376 KB
testcase_19 AC 222 ms
86,652 KB
testcase_20 AC 235 ms
87,296 KB
testcase_21 AC 219 ms
87,808 KB
testcase_22 AC 255 ms
87,680 KB
testcase_23 AC 256 ms
87,680 KB
testcase_24 AC 243 ms
87,808 KB
testcase_25 AC 243 ms
88,192 KB
testcase_26 AC 233 ms
87,936 KB
testcase_27 AC 237 ms
88,320 KB
testcase_28 AC 250 ms
87,936 KB
testcase_29 AC 237 ms
87,936 KB
testcase_30 AC 248 ms
88,064 KB
testcase_31 AC 248 ms
88,448 KB
testcase_32 AC 263 ms
88,064 KB
testcase_33 AC 254 ms
88,448 KB
testcase_34 AC 266 ms
87,936 KB
testcase_35 AC 228 ms
88,576 KB
testcase_36 AC 242 ms
88,576 KB
testcase_37 AC 250 ms
88,448 KB
testcase_38 AC 241 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M,A,B=map(int,input().split())
G=[[] for _ in range(N+1)]
for _ in range(M):
  l,r=map(int,input().split())
  G[l-1].append(r)
  G[r].append(l-1)
D=deque()
depth=[-1]*(N+1)
for i in range(A):
  D.append(i)
  depth[i]=0
while D:
  v=D.popleft()
  for nv in G[v]:
    if depth[nv]==-1:
      depth[nv]=depth[v]+1
      D.append(nv)
ans=10**9
for i in range(B,N+1):
  if depth[i]!=-1:
    ans=min(ans,depth[i])
if ans==10**9:
  print(-1)
else:
  print(ans)
0