結果

問題 No.1565 Union
ユーザー ThetaTheta
提出日時 2024-04-16 11:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 498 ms / 2,000 ms
コード長 988 bytes
コンパイル時間 470 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 166,864 KB
最終ジャッジ日時 2024-05-23 18:12:49
合計ジャッジ時間 8,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
55,664 KB
testcase_01 AC 37 ms
55,008 KB
testcase_02 AC 36 ms
55,052 KB
testcase_03 AC 35 ms
55,772 KB
testcase_04 AC 35 ms
55,396 KB
testcase_05 AC 36 ms
54,968 KB
testcase_06 AC 36 ms
55,312 KB
testcase_07 AC 35 ms
55,240 KB
testcase_08 AC 36 ms
56,336 KB
testcase_09 AC 35 ms
54,912 KB
testcase_10 AC 164 ms
90,864 KB
testcase_11 AC 271 ms
122,356 KB
testcase_12 AC 247 ms
97,056 KB
testcase_13 AC 129 ms
87,660 KB
testcase_14 AC 306 ms
113,056 KB
testcase_15 AC 481 ms
149,988 KB
testcase_16 AC 381 ms
128,796 KB
testcase_17 AC 498 ms
150,000 KB
testcase_18 AC 468 ms
149,836 KB
testcase_19 AC 468 ms
150,656 KB
testcase_20 AC 256 ms
163,624 KB
testcase_21 AC 263 ms
164,900 KB
testcase_22 AC 278 ms
163,584 KB
testcase_23 AC 277 ms
164,464 KB
testcase_24 AC 271 ms
164,960 KB
testcase_25 AC 300 ms
165,952 KB
testcase_26 AC 299 ms
165,972 KB
testcase_27 AC 290 ms
166,864 KB
testcase_28 AC 310 ms
164,728 KB
testcase_29 AC 289 ms
166,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from heapq import heappop
from math import inf, isinf


def bfs_dist(graph: list[set[int]], start: int, goal: int) -> int | float:
    distance = [inf for _ in graph]
    distance[start] = 0
    queue = deque([start])
    visited = set()
    while queue:
        current = queue.popleft()
        visited.add(current)
        for dest in graph[current]:
            if dest in visited:
                continue
            if distance[dest] <= distance[current] + 1:
                continue
            queue.append(dest)
            distance[dest] = distance[current] + 1

    return distance[goal]


def main():
    N, M = map(int, input().split())
    graph = [set() for _ in range(N)]
    for _ in range(M):
        a, b = map(int, input().split())
        graph[a - 1].add(b - 1)
        graph[b - 1].add(a - 1)

    if isinf((dist := bfs_dist(graph, 0, N - 1))):
        print(-1)
    else:
        print(dist)


if __name__ == "__main__":
    main()
0