結果

問題 No.1565 Union
ユーザー brthyyjpbrthyyjp
提出日時 2021-07-12 20:01:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 534 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 102,940 KB
最終ジャッジ日時 2024-12-20 09:21:38
合計ジャッジ時間 5,789 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,064 KB
testcase_01 AC 43 ms
54,496 KB
testcase_02 AC 44 ms
54,004 KB
testcase_03 AC 42 ms
54,308 KB
testcase_04 AC 41 ms
54,556 KB
testcase_05 AC 42 ms
54,820 KB
testcase_06 AC 43 ms
55,172 KB
testcase_07 AC 43 ms
54,616 KB
testcase_08 AC 42 ms
55,004 KB
testcase_09 AC 44 ms
54,192 KB
testcase_10 AC 100 ms
80,892 KB
testcase_11 AC 171 ms
94,016 KB
testcase_12 AC 139 ms
84,468 KB
testcase_13 AC 96 ms
81,280 KB
testcase_14 AC 187 ms
90,512 KB
testcase_15 AC 309 ms
100,964 KB
testcase_16 AC 216 ms
100,808 KB
testcase_17 AC 282 ms
100,948 KB
testcase_18 AC 275 ms
101,220 KB
testcase_19 AC 278 ms
100,972 KB
testcase_20 AC 142 ms
102,612 KB
testcase_21 AC 147 ms
102,940 KB
testcase_22 AC 148 ms
102,780 KB
testcase_23 AC 144 ms
102,772 KB
testcase_24 AC 144 ms
102,768 KB
testcase_25 AC 159 ms
102,516 KB
testcase_26 AC 159 ms
102,660 KB
testcase_27 AC 161 ms
102,512 KB
testcase_28 AC 157 ms
102,776 KB
testcase_29 AC 160 ms
102,744 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