結果

問題 No.1565 Union
ユーザー KazunKazun
提出日時 2021-06-27 22:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 100,116 KB
最終ジャッジ日時 2024-06-10 13:12:07
合計ジャッジ時間 6,842 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,744 KB
testcase_01 AC 40 ms
54,860 KB
testcase_02 AC 41 ms
53,808 KB
testcase_03 AC 39 ms
54,900 KB
testcase_04 AC 40 ms
53,808 KB
testcase_05 AC 39 ms
53,560 KB
testcase_06 AC 41 ms
54,000 KB
testcase_07 AC 39 ms
53,908 KB
testcase_08 AC 40 ms
53,748 KB
testcase_09 AC 41 ms
54,640 KB
testcase_10 AC 106 ms
80,388 KB
testcase_11 AC 188 ms
92,544 KB
testcase_12 AC 158 ms
84,860 KB
testcase_13 AC 92 ms
79,936 KB
testcase_14 AC 212 ms
89,672 KB
testcase_15 AC 332 ms
98,488 KB
testcase_16 AC 248 ms
98,716 KB
testcase_17 AC 330 ms
98,544 KB
testcase_18 AC 310 ms
98,976 KB
testcase_19 AC 337 ms
98,776 KB
testcase_20 AC 152 ms
99,872 KB
testcase_21 AC 151 ms
99,996 KB
testcase_22 AC 152 ms
100,116 KB
testcase_23 AC 149 ms
99,960 KB
testcase_24 AC 154 ms
99,604 KB
testcase_25 AC 172 ms
99,560 KB
testcase_26 AC 164 ms
99,944 KB
testcase_27 AC 166 ms
99,956 KB
testcase_28 AC 170 ms
99,692 KB
testcase_29 AC 163 ms
99,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input=sys.stdin.readline

N,M=map(int,input().split())
E=[[] for _ in range(N+1)]
for _ in range(M):
    a,b=map(int,input().split())
    E[a].append(b)
    E[b].append(a)

X=[-1]*(N+1); X[1]=0
Q=deque([1])
while Q:
    x=Q.popleft()

    for y in E[x]:
        if X[y]==-1:
            X[y]=X[x]+1
            Q.append(y)

print(X[N])
0