結果

問題 No.1565 Union
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-06-26 13:18:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 325 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 102,092 KB
最終ジャッジ日時 2024-05-23 20:20:28
合計ジャッジ時間 6,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,508 KB
testcase_01 AC 40 ms
54,576 KB
testcase_02 AC 40 ms
53,840 KB
testcase_03 AC 40 ms
53,884 KB
testcase_04 AC 40 ms
55,372 KB
testcase_05 AC 39 ms
54,192 KB
testcase_06 AC 40 ms
53,936 KB
testcase_07 AC 40 ms
55,164 KB
testcase_08 AC 40 ms
54,292 KB
testcase_09 AC 40 ms
55,104 KB
testcase_10 AC 115 ms
80,596 KB
testcase_11 AC 188 ms
94,116 KB
testcase_12 AC 163 ms
85,676 KB
testcase_13 AC 94 ms
80,180 KB
testcase_14 AC 212 ms
90,936 KB
testcase_15 AC 324 ms
100,600 KB
testcase_16 AC 244 ms
100,084 KB
testcase_17 AC 325 ms
100,664 KB
testcase_18 AC 325 ms
100,500 KB
testcase_19 AC 320 ms
100,620 KB
testcase_20 AC 152 ms
101,748 KB
testcase_21 AC 158 ms
101,808 KB
testcase_22 AC 158 ms
101,612 KB
testcase_23 AC 158 ms
101,712 KB
testcase_24 AC 157 ms
102,092 KB
testcase_25 AC 176 ms
101,808 KB
testcase_26 AC 175 ms
102,084 KB
testcase_27 AC 174 ms
101,764 KB
testcase_28 AC 176 ms
101,884 KB
testcase_29 AC 170 ms
101,992 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

    if 0 <= a < N and 0 <= b < N:
        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