結果

問題 No.1565 Union
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-06-26 14:51:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 440 bytes
コンパイル時間 582 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 101,100 KB
最終ジャッジ日時 2024-06-25 10:38:42
合計ジャッジ時間 8,734 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
53,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 44 ms
53,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 44 ms
53,628 KB
testcase_09 WA -
testcase_10 AC 198 ms
84,096 KB
testcase_11 AC 284 ms
94,048 KB
testcase_12 AC 278 ms
86,912 KB
testcase_13 AC 150 ms
81,192 KB
testcase_14 AC 333 ms
91,904 KB
testcase_15 WA -
testcase_16 AC 376 ms
99,960 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n,m = map(int,input().split())
e = [[] for i in range(n)]
for _ in range(m):
    a,b = [int(x)-1 for x in input().split()]
    e[a].append(b)
    e[b].append(a)

dis = [n+1]*n
dis[0] = 0
q = deque([0])
while q:
    now = q.popleft()
    for nex in e[now]:
        if dis[nex] > dis[now]+1:
            q.append(nex)
            dis[nex] = dis[now]+1
if dis[-1] == n+1:
    print(-1)
else:
    print(m-dis[-1])
0