結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-10-31 15:19:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 915 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 90,044 KB
最終ジャッジ日時 2024-09-25 17:40:38
合計ジャッジ時間 8,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,760 KB
testcase_01 AC 42 ms
53,760 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 186 ms
89,856 KB
testcase_04 AC 147 ms
90,044 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 154 ms
79,936 KB
testcase_07 AC 112 ms
77,920 KB
testcase_08 AC 115 ms
79,020 KB
testcase_09 AC 140 ms
79,232 KB
testcase_10 AC 126 ms
79,360 KB
testcase_11 AC 176 ms
84,384 KB
testcase_12 AC 97 ms
77,056 KB
testcase_13 AC 118 ms
78,676 KB
testcase_14 AC 148 ms
81,664 KB
testcase_15 AC 153 ms
80,764 KB
testcase_16 AC 142 ms
85,792 KB
testcase_17 AC 84 ms
77,440 KB
testcase_18 AC 88 ms
79,360 KB
testcase_19 AC 169 ms
83,304 KB
testcase_20 AC 153 ms
82,432 KB
testcase_21 AC 154 ms
82,560 KB
testcase_22 AC 120 ms
80,616 KB
testcase_23 AC 125 ms
80,488 KB
testcase_24 AC 85 ms
77,568 KB
testcase_25 AC 155 ms
82,612 KB
testcase_26 AC 128 ms
80,000 KB
testcase_27 AC 149 ms
83,216 KB
testcase_28 AC 168 ms
83,212 KB
testcase_29 AC 189 ms
85,120 KB
testcase_30 AC 158 ms
83,800 KB
testcase_31 AC 163 ms
82,688 KB
testcase_32 AC 129 ms
80,344 KB
testcase_33 AC 163 ms
83,568 KB
testcase_34 AC 172 ms
81,792 KB
testcase_35 AC 160 ms
84,732 KB
testcase_36 AC 168 ms
83,536 KB
testcase_37 AC 125 ms
80,768 KB
testcase_38 AC 159 ms
81,792 KB
testcase_39 AC 158 ms
81,160 KB
testcase_40 AC 172 ms
84,968 KB
testcase_41 AC 182 ms
85,700 KB
testcase_42 AC 127 ms
79,864 KB
testcase_43 AC 145 ms
81,488 KB
testcase_44 AC 122 ms
79,096 KB
testcase_45 AC 94 ms
77,776 KB
testcase_46 AC 163 ms
81,144 KB
testcase_47 AC 133 ms
78,848 KB
testcase_48 AC 128 ms
79,232 KB
testcase_49 AC 97 ms
76,648 KB
testcase_50 AC 140 ms
78,392 KB
testcase_51 AC 41 ms
53,788 KB
testcase_52 AC 117 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 1 << 60

N, M = map(int, input().split())

graph = [[] for _ in range(N)]

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

def bfs(start):
    dists = [INF]*N
    dists[start] = 0
    
    que = deque([(start, 0)])
    
    while que:
        now, d = que.popleft()
        
        for next in graph[now]:
            if dists[next] < INF:
                continue
            dists[next] = d + 1
            que.append((next, d + 1))
    
    return dists

di = {
    0: bfs(0),
    N - 2: bfs(N - 2),
    N - 1: bfs(N - 1)
}

# 町1 -> 町N-1 -> 町N -> 町1 の最短経路の長さ
ans_1 = di[0][N - 2] + di[N - 2][N - 1] + di[N - 1][0]

# 町1 -> 町N -> 町N-1 -> 町1 の最短経路の長さ
ans_2 = di[0][N - 1] + di[N - 1][N - 2] + di[N - 2][0]

ans = min(ans_1, ans_2)

if ans < INF:
	print(ans)
else:
	print(-1)
0