結果

問題 No.1244 Black Segment
ユーザー 👑 rin204rin204
提出日時 2022-07-06 06:55:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 668 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 88,832 KB
最終ジャッジ日時 2024-05-10 03:46:53
合計ジャッジ時間 6,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 44 ms
53,632 KB
testcase_09 AC 43 ms
53,760 KB
testcase_10 AC 43 ms
53,504 KB
testcase_11 AC 43 ms
54,144 KB
testcase_12 AC 43 ms
53,632 KB
testcase_13 AC 86 ms
77,052 KB
testcase_14 AC 146 ms
78,416 KB
testcase_15 AC 88 ms
77,184 KB
testcase_16 AC 132 ms
77,304 KB
testcase_17 AC 72 ms
72,448 KB
testcase_18 AC 48 ms
60,800 KB
testcase_19 AC 46 ms
59,904 KB
testcase_20 AC 187 ms
83,168 KB
testcase_21 AC 167 ms
83,072 KB
testcase_22 AC 192 ms
83,556 KB
testcase_23 AC 211 ms
85,248 KB
testcase_24 AC 203 ms
84,228 KB
testcase_25 AC 178 ms
82,932 KB
testcase_26 AC 200 ms
85,504 KB
testcase_27 AC 229 ms
88,832 KB
testcase_28 AC 199 ms
84,480 KB
testcase_29 AC 212 ms
86,528 KB
testcase_30 AC 189 ms
83,712 KB
testcase_31 AC 213 ms
86,016 KB
testcase_32 AC 217 ms
86,528 KB
testcase_33 AC 217 ms
85,632 KB
testcase_34 AC 44 ms
53,504 KB
testcase_35 AC 115 ms
76,672 KB
testcase_36 AC 158 ms
80,460 KB
testcase_37 AC 203 ms
83,328 KB
testcase_38 AC 46 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m, a, b = map(int, input().split())
n = b - a + 2
edges = [[] for _ in range(n)]
for _ in range(m):
    l, r = map(int, input().split())
    if l <= a and b <= r:
        print(1)
        exit()
    elif r < a or b < l:
        pass
    else:
        l = max(l, a) - a
        r = min(r, b) - a + 1
        edges[l].append(r)
        edges[r].append(l)
        
        
queue = deque()
queue.append(0)
dist = [-1] * n
dist[0] = 0
while queue:
    pos = queue.popleft()
    for npos in edges[pos]:
        if dist[npos] != -1:
            continue
        dist[npos] = dist[pos] + 1
        queue.append(npos)
print(dist[-1])
        
0