結果

問題 No.1565 Union
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-12 20:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 102,896 KB
最終ジャッジ日時 2024-05-13 06:36:25
合計ジャッジ時間 6,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,672 KB
testcase_01 AC 43 ms
55,564 KB
testcase_02 AC 43 ms
54,736 KB
testcase_03 AC 42 ms
54,320 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 44 ms
54,448 KB
testcase_06 AC 43 ms
55,112 KB
testcase_07 AC 44 ms
54,744 KB
testcase_08 AC 43 ms
55,320 KB
testcase_09 AC 43 ms
54,672 KB
testcase_10 AC 104 ms
81,536 KB
testcase_11 AC 201 ms
94,120 KB
testcase_12 AC 152 ms
84,444 KB
testcase_13 AC 97 ms
81,276 KB
testcase_14 AC 222 ms
90,372 KB
testcase_15 AC 355 ms
101,292 KB
testcase_16 AC 257 ms
100,696 KB
testcase_17 AC 356 ms
100,964 KB
testcase_18 AC 339 ms
100,936 KB
testcase_19 AC 356 ms
101,328 KB
testcase_20 AC 146 ms
102,504 KB
testcase_21 AC 144 ms
102,512 KB
testcase_22 AC 148 ms
102,484 KB
testcase_23 AC 143 ms
102,600 KB
testcase_24 AC 142 ms
102,688 KB
testcase_25 AC 160 ms
102,616 KB
testcase_26 AC 158 ms
102,488 KB
testcase_27 AC 156 ms
102,896 KB
testcase_28 AC 168 ms
102,744 KB
testcase_29 AC 162 ms
102,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

n, m = map(int, input().split())
g = [[] for i in range(n)]
for i in range(m):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    g[a].append(b)
    g[b].append(a)

from collections import deque
q = deque([])
q.append(0)
dist = [-1]*n
dist[0] = 0
while q:
    v = q.popleft()
    for u in g[v]:
        if dist[u] == -1:
            q.append(u)
            dist[u] = dist[v]+1
if dist[n-1] == -1:
    print(-1)
else:
    print(dist[n-1])
0