結果

問題 No.1244 Black Segment
ユーザー rlangevinrlangevin
提出日時 2023-11-14 08:59:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 90,740 KB
最終ジャッジ日時 2024-09-26 03:30:58
合計ジャッジ時間 6,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,504 KB
testcase_01 AC 38 ms
53,760 KB
testcase_02 AC 37 ms
53,888 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 38 ms
53,888 KB
testcase_05 AC 38 ms
53,632 KB
testcase_06 AC 38 ms
53,760 KB
testcase_07 AC 38 ms
53,632 KB
testcase_08 AC 37 ms
53,632 KB
testcase_09 AC 37 ms
53,632 KB
testcase_10 AC 38 ms
53,504 KB
testcase_11 AC 38 ms
53,760 KB
testcase_12 AC 38 ms
53,504 KB
testcase_13 AC 57 ms
68,608 KB
testcase_14 AC 93 ms
78,636 KB
testcase_15 AC 56 ms
68,096 KB
testcase_16 AC 95 ms
78,976 KB
testcase_17 AC 56 ms
68,224 KB
testcase_18 AC 125 ms
86,016 KB
testcase_19 AC 132 ms
86,784 KB
testcase_20 AC 136 ms
88,240 KB
testcase_21 AC 125 ms
86,896 KB
testcase_22 AC 142 ms
87,936 KB
testcase_23 AC 140 ms
88,648 KB
testcase_24 AC 134 ms
88,448 KB
testcase_25 AC 132 ms
88,320 KB
testcase_26 AC 127 ms
88,192 KB
testcase_27 AC 137 ms
88,960 KB
testcase_28 AC 139 ms
89,216 KB
testcase_29 AC 136 ms
88,704 KB
testcase_30 AC 142 ms
89,088 KB
testcase_31 AC 144 ms
88,960 KB
testcase_32 AC 139 ms
89,300 KB
testcase_33 AC 144 ms
89,196 KB
testcase_34 AC 158 ms
89,728 KB
testcase_35 AC 131 ms
90,112 KB
testcase_36 AC 139 ms
89,624 KB
testcase_37 AC 140 ms
90,740 KB
testcase_38 AC 137 ms
89,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
inf = 10 ** 18
def bfs(G, s, N):
    Q = deque([])
    dist = [inf] * N
    par = [inf] * N
    for i in range(s):
        dist[i] = 0
        Q.append(i)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != inf:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)
            
    return dist

N, M, A, B = map(int, input().split())
G = [[] for i in range(N + 1)]
for i in range(M):
    L, R = map(int, input().split())
    L -= 1
    G[L].append(R)
    G[R].append(L)

D = bfs(G, A, N + 1)
ans = min(D[B:])
print(ans) if ans != inf else print(-1)
0