結果

問題 No.1565 Union
ユーザー tobusakanatobusakana
提出日時 2022-12-17 19:41:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 406 ms / 2,000 ms
コード長 569 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 102,536 KB
最終ジャッジ日時 2024-05-12 12:02:17
合計ジャッジ時間 8,227 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,000 KB
testcase_01 AC 43 ms
54,300 KB
testcase_02 AC 41 ms
53,876 KB
testcase_03 AC 39 ms
54,144 KB
testcase_04 AC 43 ms
54,096 KB
testcase_05 AC 37 ms
54,244 KB
testcase_06 AC 40 ms
54,464 KB
testcase_07 AC 41 ms
54,852 KB
testcase_08 AC 40 ms
54,920 KB
testcase_09 AC 40 ms
54,692 KB
testcase_10 AC 168 ms
88,388 KB
testcase_11 AC 253 ms
93,820 KB
testcase_12 AC 235 ms
92,840 KB
testcase_13 AC 134 ms
80,704 KB
testcase_14 AC 300 ms
94,792 KB
testcase_15 AC 353 ms
98,668 KB
testcase_16 AC 315 ms
98,416 KB
testcase_17 AC 395 ms
102,320 KB
testcase_18 AC 396 ms
102,124 KB
testcase_19 AC 406 ms
102,536 KB
testcase_20 AC 214 ms
100,504 KB
testcase_21 AC 218 ms
100,704 KB
testcase_22 AC 218 ms
100,528 KB
testcase_23 AC 219 ms
100,272 KB
testcase_24 AC 211 ms
100,820 KB
testcase_25 AC 241 ms
100,712 KB
testcase_26 AC 211 ms
100,076 KB
testcase_27 AC 221 ms
100,320 KB
testcase_28 AC 240 ms
100,444 KB
testcase_29 AC 230 ms
100,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for i in range(N)]
for _ in range(M):
    a,b = map(int,input().split())
    G[a - 1].append(b - 1)
    G[b - 1].append(a - 1)
    
from collections import deque
q = deque([])
q.append([0, -1, 0])
visited = [False] * N
while q:
    v,p,c = q.popleft()
    if visited[v]:
        continue
    visited[v] = True
    if v == N - 1:
        print(c)
        break
    for child in G[v]:
        if child == p:
            continue
        if visited[child]:
            continue
        q.append([child, v, c + 1])
else:
    print(-1)
0