結果

問題 No.1565 Union
ユーザー qibqib
提出日時 2022-11-24 01:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 446 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 409 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 101,980 KB
最終ジャッジ日時 2024-12-20 19:30:18
合計ジャッジ時間 8,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
54,496 KB
testcase_01 AC 43 ms
55,048 KB
testcase_02 AC 43 ms
55,380 KB
testcase_03 AC 43 ms
55,120 KB
testcase_04 AC 47 ms
53,964 KB
testcase_05 AC 46 ms
54,272 KB
testcase_06 AC 45 ms
55,356 KB
testcase_07 AC 47 ms
54,088 KB
testcase_08 AC 46 ms
54,852 KB
testcase_09 AC 47 ms
54,248 KB
testcase_10 AC 179 ms
81,144 KB
testcase_11 AC 252 ms
93,540 KB
testcase_12 AC 247 ms
85,956 KB
testcase_13 AC 141 ms
80,908 KB
testcase_14 AC 283 ms
90,488 KB
testcase_15 AC 446 ms
101,980 KB
testcase_16 AC 338 ms
98,544 KB
testcase_17 AC 379 ms
98,932 KB
testcase_18 AC 395 ms
98,820 KB
testcase_19 AC 392 ms
99,172 KB
testcase_20 AC 228 ms
99,740 KB
testcase_21 AC 233 ms
99,592 KB
testcase_22 AC 230 ms
99,756 KB
testcase_23 AC 228 ms
99,880 KB
testcase_24 AC 231 ms
99,672 KB
testcase_25 AC 251 ms
99,684 KB
testcase_26 AC 246 ms
99,816 KB
testcase_27 AC 243 ms
99,620 KB
testcase_28 AC 249 ms
99,876 KB
testcase_29 AC 244 ms
99,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())

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

src = 0
dst = n - 1
dist = [None for _ in range(n)]
dist[src] = 0
dq = deque()
dq.appendleft(src)
while len(dq) > 0:
  cur = dq.pop()
  for nxt in g[cur]:
    if not dist[nxt] is None:
      continue
    dist[nxt] = dist[cur] + 1
    dq.appendleft(nxt)

if dist[dst] is None:
  print("-1")
else:
  print(dist[dst])
0