結果

問題 No.1565 Union
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-26 13:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 408 ms / 2,000 ms
コード長 847 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 102,020 KB
最終ジャッジ日時 2024-09-27 08:29:03
合計ジャッジ時間 7,610 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,096 KB
testcase_01 AC 41 ms
55,464 KB
testcase_02 AC 43 ms
54,936 KB
testcase_03 AC 42 ms
54,180 KB
testcase_04 AC 41 ms
55,336 KB
testcase_05 AC 44 ms
54,440 KB
testcase_06 AC 42 ms
54,060 KB
testcase_07 AC 44 ms
54,628 KB
testcase_08 AC 44 ms
54,200 KB
testcase_09 AC 43 ms
55,704 KB
testcase_10 AC 120 ms
80,712 KB
testcase_11 AC 232 ms
94,316 KB
testcase_12 AC 204 ms
85,804 KB
testcase_13 AC 107 ms
80,236 KB
testcase_14 AC 271 ms
91,092 KB
testcase_15 AC 405 ms
100,756 KB
testcase_16 AC 315 ms
99,952 KB
testcase_17 AC 408 ms
100,540 KB
testcase_18 AC 396 ms
100,352 KB
testcase_19 AC 399 ms
100,360 KB
testcase_20 AC 162 ms
101,560 KB
testcase_21 AC 166 ms
101,992 KB
testcase_22 AC 170 ms
102,020 KB
testcase_23 AC 167 ms
101,536 KB
testcase_24 AC 167 ms
101,552 KB
testcase_25 AC 184 ms
101,992 KB
testcase_26 AC 180 ms
101,556 KB
testcase_27 AC 186 ms
101,688 KB
testcase_28 AC 183 ms
101,932 KB
testcase_29 AC 177 ms
101,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

https://yukicoder.me/problems/no/1565


"""

from sys import stdin
#重みのないグラフでの最短経路問題
#隣接リストと始点を与えると始点からの距離のリスト & 親のリストを返す
from collections import deque
def NC_Dij(lis,start):

    ret = [float("inf")] * len(lis)
    ret[start] = 0
    
    q = deque([start])

    while len(q) > 0:
        now = q.popleft()

        for nex in lis[now]:

            if ret[nex] > ret[now] + 1:
                ret[nex] = ret[now] + 1
                q.append(nex)

    return ret
N,M = map(int,stdin.readline().split())

lis = [ [] for i in range(N) ]

for i in range(M):

    a,b = map(int,stdin.readline().split())
    a -= 1
    b -= 1
    lis[a].append(b)
    lis[b].append(a)

dlis = NC_Dij(lis,0)

ans = dlis[-1]

print (ans if ans!=float("inf") else -1)
0