結果

問題 No.1565 Union
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-26 13:10:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 356 ms / 2,000 ms
コード長 407 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 99,988 KB
最終ジャッジ日時 2024-06-11 16:38:47
合計ジャッジ時間 7,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
54,568 KB
testcase_01 AC 39 ms
54,536 KB
testcase_02 AC 35 ms
53,688 KB
testcase_03 AC 35 ms
55,272 KB
testcase_04 AC 34 ms
54,380 KB
testcase_05 AC 35 ms
53,740 KB
testcase_06 AC 36 ms
55,060 KB
testcase_07 AC 35 ms
54,560 KB
testcase_08 AC 36 ms
54,128 KB
testcase_09 AC 35 ms
55,176 KB
testcase_10 AC 138 ms
80,980 KB
testcase_11 AC 212 ms
93,624 KB
testcase_12 AC 187 ms
85,544 KB
testcase_13 AC 110 ms
80,852 KB
testcase_14 AC 255 ms
90,324 KB
testcase_15 AC 356 ms
98,668 KB
testcase_16 AC 291 ms
98,604 KB
testcase_17 AC 353 ms
98,732 KB
testcase_18 AC 346 ms
98,700 KB
testcase_19 AC 352 ms
98,916 KB
testcase_20 AC 191 ms
99,880 KB
testcase_21 AC 192 ms
99,624 KB
testcase_22 AC 187 ms
99,712 KB
testcase_23 AC 196 ms
99,848 KB
testcase_24 AC 190 ms
99,988 KB
testcase_25 AC 206 ms
99,824 KB
testcase_26 AC 201 ms
99,800 KB
testcase_27 AC 211 ms
99,944 KB
testcase_28 AC 211 ms
99,800 KB
testcase_29 AC 198 ms
99,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
G = [[] for i 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)
from collections import deque
Q = deque([0])
dist = [-1] * n
dist[0] = 0
while Q:
    now = Q.popleft()
    for nex in G[now]:
        if dist[nex] == -1:
            dist[nex] = dist[now] + 1
            Q.append(nex)
print(dist[-1])
0