結果

問題 No.1565 Union
ユーザー nasubi24nasubi24
提出日時 2021-06-26 13:27:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 443 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 99,916 KB
最終ジャッジ日時 2024-12-20 18:47:00
合計ジャッジ時間 8,040 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,236 KB
testcase_01 AC 44 ms
54,788 KB
testcase_02 AC 46 ms
54,088 KB
testcase_03 AC 45 ms
55,488 KB
testcase_04 AC 43 ms
54,236 KB
testcase_05 AC 43 ms
53,568 KB
testcase_06 AC 43 ms
55,416 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 42 ms
54,804 KB
testcase_09 AC 43 ms
54,744 KB
testcase_10 AC 173 ms
81,260 KB
testcase_11 AC 270 ms
93,816 KB
testcase_12 AC 246 ms
85,760 KB
testcase_13 AC 142 ms
81,032 KB
testcase_14 AC 296 ms
90,556 KB
testcase_15 AC 443 ms
99,020 KB
testcase_16 AC 365 ms
98,680 KB
testcase_17 AC 428 ms
99,064 KB
testcase_18 AC 404 ms
98,772 KB
testcase_19 AC 409 ms
99,096 KB
testcase_20 AC 242 ms
99,824 KB
testcase_21 AC 239 ms
99,744 KB
testcase_22 AC 241 ms
99,888 KB
testcase_23 AC 246 ms
99,624 KB
testcase_24 AC 239 ms
99,728 KB
testcase_25 AC 256 ms
99,728 KB
testcase_26 AC 250 ms
99,628 KB
testcase_27 AC 258 ms
99,656 KB
testcase_28 AC 257 ms
99,916 KB
testcase_29 AC 253 ms
99,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
n,m=map(int,input().split())
path=[[] for _ in range(n)]
for i in range(m):
    a,b=map(int,input().split())
    path[a-1].append(b-1)
    path[b-1].append(a-1)
ans=[10**9]*n
ans[0]=0
queue=deque()
queue.append(0)
while len(queue)!=0:
    num=queue.popleft()
    for i in path[num]:
        if ans[i]>ans[num]+1:
            ans[i]=ans[num]+1
            queue.append(i)
if ans[-1]==10**9:
    print(-1)
else:
    print(ans[-1])
0