結果

問題 No.1565 Union
ユーザー H20H20
提出日時 2021-06-27 21:53:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 100,160 KB
最終ジャッジ日時 2024-12-20 09:47:09
合計ジャッジ時間 7,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,060 KB
testcase_01 AC 43 ms
53,548 KB
testcase_02 AC 43 ms
54,068 KB
testcase_03 AC 41 ms
54,208 KB
testcase_04 AC 44 ms
54,400 KB
testcase_05 AC 43 ms
55,380 KB
testcase_06 AC 42 ms
54,684 KB
testcase_07 AC 43 ms
54,340 KB
testcase_08 AC 42 ms
55,104 KB
testcase_09 AC 43 ms
54,116 KB
testcase_10 AC 170 ms
81,124 KB
testcase_11 AC 253 ms
93,796 KB
testcase_12 AC 233 ms
86,200 KB
testcase_13 AC 129 ms
81,296 KB
testcase_14 AC 282 ms
90,708 KB
testcase_15 AC 348 ms
99,324 KB
testcase_16 AC 322 ms
98,636 KB
testcase_17 AC 357 ms
98,724 KB
testcase_18 AC 378 ms
98,912 KB
testcase_19 AC 370 ms
98,868 KB
testcase_20 AC 220 ms
99,748 KB
testcase_21 AC 227 ms
99,864 KB
testcase_22 AC 223 ms
100,156 KB
testcase_23 AC 226 ms
99,992 KB
testcase_24 AC 226 ms
99,764 KB
testcase_25 AC 250 ms
99,996 KB
testcase_26 AC 233 ms
99,884 KB
testcase_27 AC 236 ms
100,160 KB
testcase_28 AC 251 ms
99,772 KB
testcase_29 AC 249 ms
100,012 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