結果

問題 No.1565 Union
ユーザー 👑 rin204rin204
提出日時 2022-02-12 23:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 100,060 KB
最終ジャッジ日時 2024-05-04 11:58:23
合計ジャッジ時間 9,131 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,376 KB
testcase_01 AC 50 ms
53,504 KB
testcase_02 AC 47 ms
53,504 KB
testcase_03 AC 45 ms
53,504 KB
testcase_04 AC 42 ms
53,248 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 44 ms
54,528 KB
testcase_08 AC 42 ms
53,760 KB
testcase_09 AC 44 ms
53,632 KB
testcase_10 AC 168 ms
81,128 KB
testcase_11 AC 278 ms
93,536 KB
testcase_12 AC 251 ms
85,484 KB
testcase_13 AC 134 ms
80,988 KB
testcase_14 AC 323 ms
90,564 KB
testcase_15 AC 472 ms
99,260 KB
testcase_16 AC 379 ms
98,480 KB
testcase_17 AC 449 ms
99,040 KB
testcase_18 AC 446 ms
98,884 KB
testcase_19 AC 455 ms
99,020 KB
testcase_20 AC 228 ms
99,932 KB
testcase_21 AC 226 ms
99,844 KB
testcase_22 AC 226 ms
99,804 KB
testcase_23 AC 226 ms
99,792 KB
testcase_24 AC 230 ms
99,976 KB
testcase_25 AC 244 ms
99,924 KB
testcase_26 AC 241 ms
99,796 KB
testcase_27 AC 249 ms
100,020 KB
testcase_28 AC 261 ms
99,872 KB
testcase_29 AC 242 ms
100,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append(b)
    edges[b].append(a)
    
queue = deque()
queue.append(0)
dist = [-1] * n
dist[0] = 0
while queue:
    pos = queue.popleft()
    for npos in edges[pos]:
        if dist[npos] == -1:
            dist[npos] = dist[pos] + 1
            queue.append(npos)
print(dist[-1])
0