結果

問題 No.1565 Union
ユーザー qibqib
提出日時 2022-11-24 01:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 513 bytes
コンパイル時間 482 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 102,360 KB
最終ジャッジ日時 2024-05-24 22:14:00
合計ジャッジ時間 8,302 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,356 KB
testcase_01 AC 41 ms
54,908 KB
testcase_02 AC 42 ms
54,068 KB
testcase_03 AC 42 ms
55,116 KB
testcase_04 AC 42 ms
54,648 KB
testcase_05 AC 42 ms
54,204 KB
testcase_06 AC 42 ms
54,132 KB
testcase_07 AC 42 ms
54,480 KB
testcase_08 AC 41 ms
54,216 KB
testcase_09 AC 42 ms
54,128 KB
testcase_10 AC 166 ms
81,468 KB
testcase_11 AC 276 ms
94,096 KB
testcase_12 AC 249 ms
86,092 KB
testcase_13 AC 136 ms
81,192 KB
testcase_14 AC 317 ms
90,660 KB
testcase_15 AC 467 ms
102,360 KB
testcase_16 AC 351 ms
99,080 KB
testcase_17 AC 445 ms
99,172 KB
testcase_18 AC 435 ms
98,960 KB
testcase_19 AC 446 ms
99,176 KB
testcase_20 AC 225 ms
99,724 KB
testcase_21 AC 228 ms
100,088 KB
testcase_22 AC 227 ms
99,912 KB
testcase_23 AC 229 ms
99,940 KB
testcase_24 AC 231 ms
100,148 KB
testcase_25 AC 244 ms
99,948 KB
testcase_26 AC 242 ms
100,244 KB
testcase_27 AC 238 ms
100,132 KB
testcase_28 AC 242 ms
99,916 KB
testcase_29 AC 236 ms
100,172 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