結果

問題 No.1244 Black Segment
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-24 18:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 621 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 96,140 KB
最終ジャッジ日時 2024-10-13 02:35:38
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,248 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 42 ms
53,376 KB
testcase_04 AC 44 ms
53,248 KB
testcase_05 AC 43 ms
53,888 KB
testcase_06 AC 44 ms
53,888 KB
testcase_07 AC 43 ms
53,504 KB
testcase_08 AC 43 ms
53,632 KB
testcase_09 AC 43 ms
53,376 KB
testcase_10 AC 43 ms
53,632 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 42 ms
53,632 KB
testcase_13 AC 73 ms
69,504 KB
testcase_14 AC 114 ms
80,192 KB
testcase_15 AC 73 ms
68,608 KB
testcase_16 AC 112 ms
81,388 KB
testcase_17 AC 65 ms
66,816 KB
testcase_18 AC 133 ms
84,224 KB
testcase_19 AC 145 ms
88,880 KB
testcase_20 AC 156 ms
87,740 KB
testcase_21 AC 144 ms
88,420 KB
testcase_22 AC 165 ms
87,628 KB
testcase_23 AC 170 ms
88,252 KB
testcase_24 AC 160 ms
88,328 KB
testcase_25 AC 170 ms
88,720 KB
testcase_26 AC 162 ms
88,724 KB
testcase_27 AC 151 ms
89,028 KB
testcase_28 AC 173 ms
89,120 KB
testcase_29 AC 165 ms
89,140 KB
testcase_30 AC 159 ms
88,340 KB
testcase_31 AC 168 ms
88,996 KB
testcase_32 AC 164 ms
89,028 KB
testcase_33 AC 166 ms
88,960 KB
testcase_34 AC 147 ms
93,224 KB
testcase_35 AC 141 ms
96,140 KB
testcase_36 AC 161 ms
91,156 KB
testcase_37 AC 151 ms
90,216 KB
testcase_38 AC 154 ms
89,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from collections import deque
INF = 10**18

n, m, a, b = map(int, input().split())
edge = [[] for i in range(n+2)]
for i in range(m):
    l, r = map(int, input().split())
    r += 1
    l = max(l, a)
    r = min(r, b+1)
    edge[l].append(r)
    edge[r].append(l)

q = deque([])
q.append(a)
dist = [INF]*(n+2)
dist[a] = 0
while q:
    v = q.popleft()
    for u in edge[v]:
        if dist[u] != INF:
            continue
        dist[u] = dist[v]+1
        q.append(u)

ans = dist[b+1]
if ans < INF:
    print(ans)
else:
    print(-1)
0