結果

問題 No.1565 Union
ユーザー 👑 rin204rin204
提出日時 2022-02-12 23:25:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 99,984 KB
最終ジャッジ日時 2024-11-25 22:42:33
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,440 KB
testcase_01 AC 39 ms
53,716 KB
testcase_02 AC 40 ms
53,536 KB
testcase_03 AC 40 ms
54,016 KB
testcase_04 AC 39 ms
54,804 KB
testcase_05 AC 39 ms
55,036 KB
testcase_06 AC 40 ms
55,340 KB
testcase_07 AC 43 ms
54,436 KB
testcase_08 AC 41 ms
54,152 KB
testcase_09 AC 40 ms
53,856 KB
testcase_10 AC 147 ms
81,188 KB
testcase_11 AC 244 ms
93,596 KB
testcase_12 AC 224 ms
85,564 KB
testcase_13 AC 120 ms
80,816 KB
testcase_14 AC 275 ms
90,468 KB
testcase_15 AC 397 ms
98,784 KB
testcase_16 AC 319 ms
98,264 KB
testcase_17 AC 402 ms
98,852 KB
testcase_18 AC 384 ms
98,556 KB
testcase_19 AC 405 ms
98,980 KB
testcase_20 AC 205 ms
99,852 KB
testcase_21 AC 211 ms
99,984 KB
testcase_22 AC 212 ms
99,664 KB
testcase_23 AC 209 ms
99,712 KB
testcase_24 AC 214 ms
99,820 KB
testcase_25 AC 233 ms
99,636 KB
testcase_26 AC 228 ms
99,808 KB
testcase_27 AC 226 ms
99,824 KB
testcase_28 AC 224 ms
99,604 KB
testcase_29 AC 221 ms
99,888 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