結果

問題 No.1244 Black Segment
ユーザー ああいいああいい
提出日時 2022-02-19 17:03:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 88,108 KB
最終ジャッジ日時 2024-06-29 10:29:05
合計ジャッジ時間 7,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,632 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 41 ms
53,632 KB
testcase_07 AC 41 ms
53,888 KB
testcase_08 AC 41 ms
53,440 KB
testcase_09 AC 41 ms
53,504 KB
testcase_10 AC 39 ms
53,888 KB
testcase_11 AC 39 ms
53,632 KB
testcase_12 AC 41 ms
53,504 KB
testcase_13 AC 84 ms
76,780 KB
testcase_14 AC 149 ms
81,152 KB
testcase_15 AC 83 ms
77,128 KB
testcase_16 AC 152 ms
80,384 KB
testcase_17 AC 73 ms
73,004 KB
testcase_18 AC 180 ms
84,976 KB
testcase_19 AC 179 ms
84,188 KB
testcase_20 AC 195 ms
86,524 KB
testcase_21 AC 166 ms
85,248 KB
testcase_22 AC 205 ms
86,136 KB
testcase_23 AC 226 ms
87,412 KB
testcase_24 AC 201 ms
86,784 KB
testcase_25 AC 199 ms
86,740 KB
testcase_26 AC 200 ms
87,400 KB
testcase_27 AC 209 ms
88,108 KB
testcase_28 AC 206 ms
86,660 KB
testcase_29 AC 209 ms
87,472 KB
testcase_30 AC 215 ms
87,380 KB
testcase_31 AC 218 ms
87,400 KB
testcase_32 AC 210 ms
87,416 KB
testcase_33 AC 209 ms
87,680 KB
testcase_34 AC 221 ms
86,912 KB
testcase_35 AC 174 ms
86,656 KB
testcase_36 AC 194 ms
86,912 KB
testcase_37 AC 190 ms
86,428 KB
testcase_38 AC 210 ms
87,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,A,B = map(int,input().split())
G = [[] for _ in range(N+1)]
for _ in range(M):
    l,r = map(int,input().split())
    if l <= A:
        G[0].append(r)
    else:
        G[l-1].append(r)
        G[r].append(l-1)
inf = 10 ** 6
dist = [inf] * (N+1)
dist[0] = 0
from collections import deque
q = deque()
q.append(0)
while q:
    now = q.popleft()
    for v in G[now]:
        if dist[v] > dist[now] + 1:
            dist[v] = dist[now] + 1
            q.append(v)
ans = inf
for i in range(B,N+1):
    if dist[i] < ans:
        ans = dist[i]
print(ans if ans != inf else -1)
0