結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-10-31 13:50:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 1,007 bytes
コンパイル時間 806 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,044 KB
最終ジャッジ日時 2024-09-25 17:37:05
合計ジャッジ時間 9,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,016 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 199 ms
89,808 KB
testcase_04 AC 145 ms
90,044 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 156 ms
79,996 KB
testcase_07 AC 113 ms
77,988 KB
testcase_08 AC 117 ms
79,100 KB
testcase_09 AC 142 ms
79,232 KB
testcase_10 AC 128 ms
79,464 KB
testcase_11 AC 185 ms
84,352 KB
testcase_12 AC 99 ms
76,848 KB
testcase_13 AC 123 ms
78,632 KB
testcase_14 AC 151 ms
81,840 KB
testcase_15 AC 153 ms
81,052 KB
testcase_16 AC 139 ms
85,756 KB
testcase_17 AC 83 ms
77,568 KB
testcase_18 AC 88 ms
79,400 KB
testcase_19 AC 164 ms
82,988 KB
testcase_20 AC 155 ms
82,524 KB
testcase_21 AC 156 ms
82,764 KB
testcase_22 AC 120 ms
80,684 KB
testcase_23 AC 128 ms
80,768 KB
testcase_24 AC 85 ms
77,420 KB
testcase_25 AC 164 ms
82,676 KB
testcase_26 AC 128 ms
80,164 KB
testcase_27 AC 151 ms
82,932 KB
testcase_28 AC 173 ms
83,104 KB
testcase_29 AC 184 ms
84,816 KB
testcase_30 AC 164 ms
83,576 KB
testcase_31 AC 177 ms
82,776 KB
testcase_32 AC 133 ms
80,016 KB
testcase_33 AC 171 ms
83,432 KB
testcase_34 AC 167 ms
82,048 KB
testcase_35 AC 169 ms
84,736 KB
testcase_36 AC 172 ms
83,356 KB
testcase_37 AC 127 ms
80,532 KB
testcase_38 AC 161 ms
81,964 KB
testcase_39 AC 159 ms
80,936 KB
testcase_40 AC 177 ms
84,992 KB
testcase_41 AC 190 ms
85,420 KB
testcase_42 AC 129 ms
80,000 KB
testcase_43 AC 147 ms
81,492 KB
testcase_44 AC 121 ms
79,276 KB
testcase_45 AC 97 ms
77,576 KB
testcase_46 AC 165 ms
81,136 KB
testcase_47 AC 132 ms
78,956 KB
testcase_48 AC 127 ms
79,176 KB
testcase_49 AC 97 ms
76,980 KB
testcase_50 AC 145 ms
78,848 KB
testcase_51 AC 42 ms
54,400 KB
testcase_52 AC 119 ms
77,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 1 << 60

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

# graph[u]: 町u と繋がっている町のリスト
graph = [[] for _ in range(N)]

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

# 町start からN個全ての町までの距離のリストを返す関数
def bfs(start):
    distances = [INF]*N
    distances[start] = 0
    
    que = deque([(start, 0)])
    
    while que:
        now, d = que.popleft()
        
        for next in graph[now]:
            if distances[next] < INF:
                continue
            distances[next] = d + 1
            que.append((next, d + 1))
    
    return distances

# dist[u][v]: 町u ->町v の距離 (INF ならば到達不能)
dist = {
    0: bfs(0),
    N - 2: bfs(N - 2),
    N - 1: bfs(N - 1)
}

ans = min(
    dist[0][N - 2] + dist[N - 2][N - 1] + dist[N - 1][0],
    dist[0][N - 1] + dist[N - 1][N - 2] + dist[N - 2][0]
)

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