結果

問題 No.1565 Union
ユーザー H20H20
提出日時 2021-06-27 16:24:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 100,224 KB
最終ジャッジ日時 2024-06-25 11:50:42
合計ジャッジ時間 7,722 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,760 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 41 ms
53,964 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 42 ms
54,016 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 41 ms
53,632 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 163 ms
81,160 KB
testcase_11 AC 282 ms
93,824 KB
testcase_12 AC 250 ms
85,888 KB
testcase_13 AC 137 ms
80,864 KB
testcase_14 AC 323 ms
91,008 KB
testcase_15 WA -
testcase_16 AC 358 ms
98,932 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 226 ms
99,584 KB
testcase_21 AC 217 ms
99,968 KB
testcase_22 AC 218 ms
99,584 KB
testcase_23 AC 214 ms
99,968 KB
testcase_24 AC 213 ms
99,728 KB
testcase_25 WA -
testcase_26 AC 212 ms
99,584 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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.pop()
    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