結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,004 KB
testcase_01 AC 42 ms
53,364 KB
testcase_02 AC 43 ms
54,212 KB
testcase_03 AC 44 ms
54,316 KB
testcase_04 AC 43 ms
54,324 KB
testcase_05 AC 43 ms
55,072 KB
testcase_06 AC 45 ms
54,748 KB
testcase_07 AC 48 ms
54,540 KB
testcase_08 AC 43 ms
54,384 KB
testcase_09 AC 44 ms
54,508 KB
testcase_10 AC 193 ms
88,064 KB
testcase_11 AC 276 ms
93,632 KB
testcase_12 AC 257 ms
92,536 KB
testcase_13 AC 146 ms
80,508 KB
testcase_14 AC 346 ms
94,072 KB
testcase_15 AC 371 ms
98,772 KB
testcase_16 AC 330 ms
98,436 KB
testcase_17 AC 408 ms
102,172 KB
testcase_18 AC 428 ms
101,968 KB
testcase_19 AC 467 ms
102,428 KB
testcase_20 AC 249 ms
99,996 KB
testcase_21 AC 248 ms
100,540 KB
testcase_22 AC 242 ms
100,532 KB
testcase_23 AC 234 ms
100,552 KB
testcase_24 AC 238 ms
100,084 KB
testcase_25 AC 253 ms
100,200 KB
testcase_26 AC 233 ms
99,844 KB
testcase_27 AC 244 ms
100,900 KB
testcase_28 AC 255 ms
100,012 KB
testcase_29 AC 251 ms
100,396 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