結果

問題 No.1565 Union
ユーザー PSL24251284PSL24251284
提出日時 2021-06-26 16:47:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 99,852 KB
最終ジャッジ日時 2024-12-20 16:28:34
合計ジャッジ時間 7,807 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,068 KB
testcase_01 AC 45 ms
54,880 KB
testcase_02 AC 44 ms
54,656 KB
testcase_03 AC 43 ms
53,740 KB
testcase_04 AC 42 ms
55,324 KB
testcase_05 AC 44 ms
54,376 KB
testcase_06 AC 44 ms
54,748 KB
testcase_07 AC 43 ms
54,252 KB
testcase_08 AC 43 ms
54,268 KB
testcase_09 AC 46 ms
53,932 KB
testcase_10 AC 168 ms
81,168 KB
testcase_11 AC 266 ms
93,628 KB
testcase_12 AC 238 ms
85,736 KB
testcase_13 AC 132 ms
80,804 KB
testcase_14 AC 336 ms
90,424 KB
testcase_15 AC 447 ms
98,720 KB
testcase_16 AC 349 ms
98,592 KB
testcase_17 AC 449 ms
98,788 KB
testcase_18 AC 410 ms
98,712 KB
testcase_19 AC 442 ms
98,924 KB
testcase_20 AC 227 ms
99,540 KB
testcase_21 AC 225 ms
99,760 KB
testcase_22 AC 224 ms
99,720 KB
testcase_23 AC 225 ms
99,720 KB
testcase_24 AC 227 ms
99,808 KB
testcase_25 AC 252 ms
99,796 KB
testcase_26 AC 248 ms
99,632 KB
testcase_27 AC 246 ms
99,800 KB
testcase_28 AC 243 ms
99,852 KB
testcase_29 AC 238 ms
99,736 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