結果

問題 No.1565 Union
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-20 13:35:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 982 ms / 2,000 ms
コード長 354 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,584 KB
最終ジャッジ日時 2024-05-20 15:07:17
合計ジャッジ時間 17,360 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 24 ms
10,752 KB
testcase_03 AC 24 ms
10,880 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 24 ms
10,880 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 411 ms
21,376 KB
testcase_11 AC 514 ms
35,328 KB
testcase_12 AC 640 ms
28,800 KB
testcase_13 AC 196 ms
18,048 KB
testcase_14 AC 696 ms
34,048 KB
testcase_15 AC 965 ms
44,928 KB
testcase_16 AC 833 ms
44,800 KB
testcase_17 AC 982 ms
44,928 KB
testcase_18 AC 955 ms
44,928 KB
testcase_19 AC 966 ms
44,928 KB
testcase_20 AC 749 ms
51,584 KB
testcase_21 AC 751 ms
51,584 KB
testcase_22 AC 767 ms
51,584 KB
testcase_23 AC 773 ms
51,584 KB
testcase_24 AC 772 ms
51,584 KB
testcase_25 AC 765 ms
51,584 KB
testcase_26 AC 783 ms
51,584 KB
testcase_27 AC 829 ms
51,584 KB
testcase_28 AC 775 ms
51,584 KB
testcase_29 AC 773 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
g=[[] for _ in range(n+1)]
from collections import deque
for _ in range(m):
    a,b=map(int,input().split())
    g[a].append(b)
    g[b].append(a)
d=[-1]*(n+1)
d[1]=0
q=deque()
q.append(1)
while q:
    now=q.popleft()
    for to in g[now]:
        if d[to]==-1:
            d[to]=d[now]+1
            q.append(to)
print(d[n])
0