結果

問題 No.1244 Black Segment
ユーザー AEnAEn
提出日時 2023-03-28 15:32:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 88,264 KB
最終ジャッジ日時 2024-09-20 05:18:08
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,504 KB
testcase_01 AC 41 ms
53,760 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 WA -
testcase_04 AC 39 ms
53,504 KB
testcase_05 WA -
testcase_06 AC 40 ms
53,248 KB
testcase_07 WA -
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 41 ms
53,632 KB
testcase_10 WA -
testcase_11 AC 46 ms
53,632 KB
testcase_12 AC 40 ms
53,248 KB
testcase_13 AC 84 ms
76,928 KB
testcase_14 AC 137 ms
77,984 KB
testcase_15 WA -
testcase_16 AC 120 ms
77,312 KB
testcase_17 AC 67 ms
72,448 KB
testcase_18 AC 148 ms
84,396 KB
testcase_19 AC 172 ms
86,216 KB
testcase_20 AC 163 ms
84,640 KB
testcase_21 AC 143 ms
84,384 KB
testcase_22 AC 164 ms
84,732 KB
testcase_23 WA -
testcase_24 AC 171 ms
85,504 KB
testcase_25 AC 168 ms
84,864 KB
testcase_26 AC 179 ms
86,324 KB
testcase_27 WA -
testcase_28 AC 171 ms
86,052 KB
testcase_29 AC 174 ms
86,672 KB
testcase_30 AC 165 ms
85,004 KB
testcase_31 AC 174 ms
86,972 KB
testcase_32 AC 181 ms
87,464 KB
testcase_33 AC 179 ms
87,168 KB
testcase_34 AC 118 ms
81,516 KB
testcase_35 AC 114 ms
80,980 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 177 ms
86,480 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())
    if (l<=A and r<=A) or (l>=B and r>=B):continue
    if l<=A:
        l = A
    if r>=B:
        r = B
    G[l].append(r+1)
    G[r+1].append(l)

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