結果

問題 No.1565 Union
ユーザー titiatitia
提出日時 2024-12-03 01:05:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,177 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 535 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 51,712 KB
最終ジャッジ日時 2024-12-03 01:06:21
合計ジャッジ時間 21,279 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 497 ms
21,120 KB
testcase_11 AC 599 ms
35,200 KB
testcase_12 AC 784 ms
28,544 KB
testcase_13 AC 222 ms
18,176 KB
testcase_14 AC 837 ms
33,920 KB
testcase_15 AC 1,154 ms
44,928 KB
testcase_16 AC 901 ms
44,672 KB
testcase_17 AC 1,172 ms
44,800 KB
testcase_18 AC 1,177 ms
44,928 KB
testcase_19 AC 1,176 ms
44,928 KB
testcase_20 AC 941 ms
51,712 KB
testcase_21 AC 919 ms
51,584 KB
testcase_22 AC 937 ms
51,584 KB
testcase_23 AC 897 ms
51,456 KB
testcase_24 AC 965 ms
51,456 KB
testcase_25 AC 941 ms
51,712 KB
testcase_26 AC 949 ms
51,456 KB
testcase_27 AC 921 ms
51,712 KB
testcase_28 AC 951 ms
51,584 KB
testcase_29 AC 924 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N,M=map(int,input().split())
E=[[] for i in range(N+1)]

DIS=[1<<30]*(N+1)
DIS[1]=0
Q=deque([1])

for i in range(M):
    x,y=map(int,input().split())
    E[x].append(y)
    E[y].append(x)

while Q:
    x=Q.popleft()
    for to in E[x]:
        if DIS[to]>DIS[x]+1:
            DIS[to]=DIS[x]+1
            Q.append(to)

if DIS[N]>N+10:
    print(-1)
else:
    print(DIS[N])
0