結果

問題 No.1244 Black Segment
ユーザー AEnAEn
提出日時 2023-03-28 15:37:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-09-20 05:23:15
合計ジャッジ時間 7,554 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 40 ms
53,504 KB
testcase_02 AC 41 ms
53,504 KB
testcase_03 AC 40 ms
53,504 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 41 ms
54,008 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 41 ms
53,248 KB
testcase_08 AC 41 ms
53,376 KB
testcase_09 AC 41 ms
53,760 KB
testcase_10 AC 40 ms
54,016 KB
testcase_11 AC 40 ms
53,760 KB
testcase_12 AC 41 ms
53,376 KB
testcase_13 AC 87 ms
77,312 KB
testcase_14 AC 162 ms
81,024 KB
testcase_15 AC 88 ms
76,888 KB
testcase_16 AC 165 ms
81,860 KB
testcase_17 AC 84 ms
77,148 KB
testcase_18 AC 171 ms
86,068 KB
testcase_19 AC 202 ms
87,472 KB
testcase_20 AC 215 ms
87,408 KB
testcase_21 AC 203 ms
87,856 KB
testcase_22 AC 219 ms
87,232 KB
testcase_23 AC 225 ms
87,456 KB
testcase_24 AC 213 ms
87,496 KB
testcase_25 AC 224 ms
88,372 KB
testcase_26 AC 220 ms
87,940 KB
testcase_27 AC 210 ms
88,448 KB
testcase_28 AC 234 ms
88,544 KB
testcase_29 AC 219 ms
87,980 KB
testcase_30 AC 229 ms
88,292 KB
testcase_31 AC 225 ms
87,948 KB
testcase_32 AC 224 ms
88,056 KB
testcase_33 AC 234 ms
87,664 KB
testcase_34 AC 201 ms
88,372 KB
testcase_35 AC 186 ms
90,752 KB
testcase_36 AC 224 ms
90,624 KB
testcase_37 AC 209 ms
87,296 KB
testcase_38 AC 206 ms
87,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


N,M,A,B = map(int, input().split())

G = [list() for _ in range(N+2)]
for i in range(M):
    l,r = map(int, input().split())
    G[max(l,A)].append(min(r+1,B+1))
    G[min(r+1,B+1)].append(max(l,A))

dis = [-1]*(N+2)
dis[A] = 0
d = deque()
d.append(A)
while d:
    v = d.popleft()
    for nex in G[v]:
        if dis[nex]==-1:
            dis[nex] = dis[v]+1
            d.append(nex)
print(dis[B+1])
0