結果

問題 No.1565 Union
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-26 14:53:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 438 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 101,056 KB
最終ジャッジ日時 2024-05-19 15:10:26
合計ジャッジ時間 9,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 43 ms
53,504 KB
testcase_03 AC 46 ms
53,888 KB
testcase_04 AC 43 ms
53,888 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 44 ms
54,272 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 45 ms
53,632 KB
testcase_09 AC 46 ms
53,888 KB
testcase_10 AC 185 ms
84,096 KB
testcase_11 AC 294 ms
94,164 KB
testcase_12 AC 263 ms
87,024 KB
testcase_13 AC 140 ms
81,408 KB
testcase_14 AC 365 ms
91,904 KB
testcase_15 AC 481 ms
101,056 KB
testcase_16 AC 397 ms
99,792 KB
testcase_17 AC 502 ms
100,576 KB
testcase_18 AC 477 ms
100,632 KB
testcase_19 AC 493 ms
100,740 KB
testcase_20 AC 260 ms
100,776 KB
testcase_21 AC 265 ms
100,756 KB
testcase_22 AC 261 ms
100,624 KB
testcase_23 AC 269 ms
100,960 KB
testcase_24 AC 277 ms
100,664 KB
testcase_25 AC 284 ms
100,764 KB
testcase_26 AC 280 ms
101,008 KB
testcase_27 AC 281 ms
100,724 KB
testcase_28 AC 280 ms
100,680 KB
testcase_29 AC 270 ms
100,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

dis = [n+1]*n
dis[0] = 0
q = deque([0])
while q:
    now = q.popleft()
    for nex in e[now]:
        if dis[nex] > dis[now]+1:
            q.append(nex)
            dis[nex] = dis[now]+1
if dis[-1] == n+1:
    print(-1)
else:
    print(dis[-1])
0