結果

問題 No.1565 Union
ユーザー PSL24251284PSL24251284
提出日時 2021-06-26 16:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 557 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 100,244 KB
最終ジャッジ日時 2024-05-18 18:46:27
合計ジャッジ時間 8,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,136 KB
testcase_01 AC 43 ms
53,612 KB
testcase_02 AC 43 ms
55,324 KB
testcase_03 AC 42 ms
55,056 KB
testcase_04 AC 43 ms
53,960 KB
testcase_05 AC 42 ms
54,696 KB
testcase_06 AC 47 ms
55,892 KB
testcase_07 AC 49 ms
54,912 KB
testcase_08 AC 49 ms
54,872 KB
testcase_09 AC 48 ms
56,100 KB
testcase_10 AC 180 ms
81,472 KB
testcase_11 AC 275 ms
93,668 KB
testcase_12 AC 248 ms
86,204 KB
testcase_13 AC 134 ms
81,024 KB
testcase_14 AC 343 ms
90,844 KB
testcase_15 AC 506 ms
99,028 KB
testcase_16 AC 460 ms
98,752 KB
testcase_17 AC 557 ms
98,984 KB
testcase_18 AC 435 ms
98,968 KB
testcase_19 AC 470 ms
99,196 KB
testcase_20 AC 255 ms
99,872 KB
testcase_21 AC 254 ms
99,936 KB
testcase_22 AC 253 ms
100,184 KB
testcase_23 AC 258 ms
100,136 KB
testcase_24 AC 256 ms
100,244 KB
testcase_25 AC 281 ms
100,108 KB
testcase_26 AC 271 ms
100,060 KB
testcase_27 AC 276 ms
99,936 KB
testcase_28 AC 277 ms
100,028 KB
testcase_29 AC 266 ms
100,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
E = [[] for i in range(N)]
for _ in range(M):
    a,b = map(int,input().split())
    E[a-1].append(b-1)
    E[b-1].append(a-1)
q = deque()
q.append(0)
dp = [0]*N
while q:
    x = q.pop()
    for y in E[x]:
        if y != 0 and dp[y] == 0:
            dp[y] = dp[x]+1
            q.appendleft(y)
if dp[-1] == 0:
    ans = -1
else:
    ans = dp[-1]
print(ans)
0