結果

問題 No.2565 はじめてのおつかい
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2023-11-24 01:15:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 804 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,672 KB
最終ジャッジ日時 2024-09-26 08:28:04
合計ジャッジ時間 12,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
53,760 KB
testcase_01 AC 54 ms
53,504 KB
testcase_02 AC 53 ms
53,504 KB
testcase_03 AC 313 ms
92,544 KB
testcase_04 AC 203 ms
92,672 KB
testcase_05 AC 53 ms
53,504 KB
testcase_06 AC 218 ms
80,896 KB
testcase_07 AC 156 ms
78,208 KB
testcase_08 AC 174 ms
79,872 KB
testcase_09 AC 210 ms
79,616 KB
testcase_10 AC 200 ms
80,640 KB
testcase_11 AC 286 ms
85,420 KB
testcase_12 AC 138 ms
77,568 KB
testcase_13 AC 178 ms
79,232 KB
testcase_14 AC 240 ms
83,072 KB
testcase_15 AC 232 ms
82,432 KB
testcase_16 AC 206 ms
88,064 KB
testcase_17 AC 115 ms
77,440 KB
testcase_18 AC 120 ms
80,512 KB
testcase_19 AC 259 ms
84,096 KB
testcase_20 AC 229 ms
83,712 KB
testcase_21 AC 209 ms
83,968 KB
testcase_22 AC 163 ms
81,664 KB
testcase_23 AC 183 ms
81,280 KB
testcase_24 AC 118 ms
77,312 KB
testcase_25 AC 258 ms
84,736 KB
testcase_26 AC 186 ms
80,640 KB
testcase_27 AC 216 ms
84,480 KB
testcase_28 AC 259 ms
83,712 KB
testcase_29 AC 272 ms
86,784 KB
testcase_30 AC 214 ms
84,992 KB
testcase_31 AC 245 ms
84,480 KB
testcase_32 AC 183 ms
80,896 KB
testcase_33 AC 232 ms
85,120 KB
testcase_34 AC 262 ms
83,712 KB
testcase_35 AC 217 ms
86,912 KB
testcase_36 AC 286 ms
85,376 KB
testcase_37 AC 180 ms
81,024 KB
testcase_38 AC 249 ms
82,816 KB
testcase_39 AC 250 ms
82,432 KB
testcase_40 AC 241 ms
86,528 KB
testcase_41 AC 254 ms
87,552 KB
testcase_42 AC 185 ms
80,768 KB
testcase_43 AC 228 ms
82,560 KB
testcase_44 AC 178 ms
79,872 KB
testcase_45 AC 135 ms
77,952 KB
testcase_46 AC 246 ms
82,816 KB
testcase_47 AC 178 ms
79,232 KB
testcase_48 AC 183 ms
80,384 KB
testcase_49 AC 134 ms
77,824 KB
testcase_50 AC 189 ms
78,976 KB
testcase_51 AC 48 ms
53,760 KB
testcase_52 AC 139 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 10 ** 17

N, M = map(int, input().split())
graph = [[] for _ in range(N)]
for i in range(M):
    u, v = map(int, input().split())
    graph[u - 1].append(v - 1)


def bfs(v):
    dq = deque()
    isvisited = [False for _ in range(N)]
    dist = [INF for _ in range(N)]
    isvisited[v] = True
    dist[v] = 0
    dq.append(v)
    while len(dq):
        p = dq.popleft()
        for x in graph[p]:
            if isvisited[x]:
                continue
            isvisited[x] = True
            dq.append(x)
            dist[x] = dist[p] + 1
    return dist


dist1 = bfs(0)
distn1 = bfs(N - 2)
distn = bfs(N - 1)

ans = min(dist1[N - 2] + distn1[N - 1] + distn[0],
          dist1[N - 1] + distn[N - 2] + distn1[0])
if ans >= INF:
    print(-1)
else:
    print(ans)
0