結果

問題 No.1565 Union
ユーザー 👑 H20H20
提出日時 2021-06-27 21:53:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 410 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 99,516 KB
最終ジャッジ日時 2023-12-28 23:31:53
合計ジャッジ時間 8,243 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,460 KB
testcase_01 AC 40 ms
53,460 KB
testcase_02 AC 39 ms
55,612 KB
testcase_03 AC 38 ms
55,612 KB
testcase_04 AC 37 ms
53,460 KB
testcase_05 AC 38 ms
55,612 KB
testcase_06 AC 39 ms
55,612 KB
testcase_07 AC 40 ms
55,612 KB
testcase_08 AC 38 ms
53,460 KB
testcase_09 AC 42 ms
55,612 KB
testcase_10 AC 158 ms
80,784 KB
testcase_11 AC 260 ms
93,252 KB
testcase_12 AC 231 ms
85,452 KB
testcase_13 AC 129 ms
80,680 KB
testcase_14 AC 306 ms
90,248 KB
testcase_15 AC 365 ms
98,620 KB
testcase_16 AC 339 ms
98,236 KB
testcase_17 AC 380 ms
98,620 KB
testcase_18 AC 410 ms
98,620 KB
testcase_19 AC 405 ms
98,620 KB
testcase_20 AC 217 ms
99,516 KB
testcase_21 AC 220 ms
99,516 KB
testcase_22 AC 220 ms
99,516 KB
testcase_23 AC 219 ms
99,516 KB
testcase_24 AC 217 ms
99,516 KB
testcase_25 AC 238 ms
99,516 KB
testcase_26 AC 217 ms
99,516 KB
testcase_27 AC 226 ms
99,516 KB
testcase_28 AC 236 ms
99,516 KB
testcase_29 AC 230 ms
99,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

PASS = [False]*(N+1)

d = collections.deque()
d.append((1,0))

while len(d):
    p,cnt=d.popleft()
    if p==N:
        print(cnt)
        exit()
    for n in L[p]:
        if PASS[n]==False:
            PASS[n]=True
            d.append((n,cnt+1))

print(-1)
0