結果

問題 No.1565 Union
ユーザー ThetaTheta
提出日時 2024-04-16 11:50:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 907 bytes
コンパイル時間 756 ms
コンパイル使用メモリ 81,796 KB
実行使用メモリ 166,208 KB
最終ジャッジ日時 2024-10-07 05:51:09
合計ジャッジ時間 11,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,892 KB
testcase_01 AC 40 ms
54,316 KB
testcase_02 AC 41 ms
54,440 KB
testcase_03 AC 40 ms
55,056 KB
testcase_04 AC 40 ms
55,276 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 39 ms
54,584 KB
testcase_09 WA -
testcase_10 AC 399 ms
93,340 KB
testcase_11 AC 340 ms
121,904 KB
testcase_12 AC 411 ms
100,216 KB
testcase_13 AC 168 ms
88,448 KB
testcase_14 AC 458 ms
114,852 KB
testcase_15 AC 693 ms
148,720 KB
testcase_16 AC 463 ms
129,024 KB
testcase_17 WA -
testcase_18 AC 633 ms
147,860 KB
testcase_19 WA -
testcase_20 AC 312 ms
163,264 KB
testcase_21 AC 324 ms
164,764 KB
testcase_22 AC 303 ms
163,528 KB
testcase_23 AC 296 ms
163,904 KB
testcase_24 AC 301 ms
164,412 KB
testcase_25 AC 325 ms
165,808 KB
testcase_26 AC 336 ms
166,208 KB
testcase_27 AC 331 ms
165,752 KB
testcase_28 AC 320 ms
164,620 KB
testcase_29 AC 328 ms
165,904 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
            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