結果

問題 No.1565 Union
ユーザー kept1994kept1994
提出日時 2021-08-30 01:39:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 822 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,232 KB
最終ジャッジ日時 2024-12-20 19:32:20
合計ジャッジ時間 8,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,888 KB
testcase_01 AC 48 ms
53,760 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 45 ms
53,632 KB
testcase_05 AC 45 ms
54,016 KB
testcase_06 AC 47 ms
54,128 KB
testcase_07 AC 48 ms
54,144 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 48 ms
53,888 KB
testcase_10 AC 186 ms
80,896 KB
testcase_11 AC 322 ms
93,400 KB
testcase_12 AC 303 ms
85,592 KB
testcase_13 AC 158 ms
80,768 KB
testcase_14 AC 357 ms
90,344 KB
testcase_15 AC 508 ms
100,176 KB
testcase_16 AC 413 ms
99,108 KB
testcase_17 AC 520 ms
100,608 KB
testcase_18 AC 487 ms
100,172 KB
testcase_19 AC 511 ms
100,044 KB
testcase_20 AC 242 ms
100,168 KB
testcase_21 AC 247 ms
100,464 KB
testcase_22 AC 249 ms
100,480 KB
testcase_23 AC 252 ms
100,332 KB
testcase_24 AC 262 ms
100,992 KB
testcase_25 AC 269 ms
101,120 KB
testcase_26 AC 268 ms
101,232 KB
testcase_27 AC 279 ms
100,992 KB
testcase_28 AC 274 ms
101,120 KB
testcase_29 AC 265 ms
100,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys

def main():
    N, M = map(int, input().split())
    INF = 10 ** 16
    from collections import deque
    def bfs(edges: "List[to]", start_node: int) -> list:
        q = deque()
        dist = [INF] * len(edges)
        q.append(start_node)
        dist[start_node] = 0
        while q:
            now = q.popleft()
            for next in edges[now]:
                if dist[next] != INF:
                    continue
                q.append(next)
                dist[next] = dist[now] + 1
        return dist
    G = [[] for _ in range(N)]
    for _ in range(M):
        a, b = map(lambda i: int(i) - 1, input().split())
        G[a].append(b)
        G[b].append(a)
    d = bfs(G, 0)
    ans = d[N - 1]
    print(-1 if ans == INF else ans)



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