結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,368 KB
testcase_01 AC 41 ms
54,288 KB
testcase_02 AC 41 ms
54,984 KB
testcase_03 AC 41 ms
55,348 KB
testcase_04 AC 41 ms
54,824 KB
testcase_05 AC 42 ms
53,804 KB
testcase_06 AC 42 ms
54,756 KB
testcase_07 AC 42 ms
55,808 KB
testcase_08 AC 41 ms
55,720 KB
testcase_09 AC 42 ms
55,176 KB
testcase_10 AC 168 ms
81,116 KB
testcase_11 AC 281 ms
93,624 KB
testcase_12 AC 275 ms
85,760 KB
testcase_13 AC 144 ms
80,908 KB
testcase_14 AC 336 ms
90,456 KB
testcase_15 AC 464 ms
100,320 KB
testcase_16 AC 366 ms
99,232 KB
testcase_17 AC 472 ms
100,512 KB
testcase_18 AC 442 ms
100,400 KB
testcase_19 AC 459 ms
100,328 KB
testcase_20 AC 223 ms
100,244 KB
testcase_21 AC 227 ms
100,372 KB
testcase_22 AC 224 ms
100,428 KB
testcase_23 AC 229 ms
100,296 KB
testcase_24 AC 227 ms
101,008 KB
testcase_25 AC 242 ms
101,132 KB
testcase_26 AC 245 ms
101,312 KB
testcase_27 AC 242 ms
101,404 KB
testcase_28 AC 245 ms
101,060 KB
testcase_29 AC 238 ms
101,452 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