結果

問題 No.2565 はじめてのおつかい
ユーザー torippytorippy
提出日時 2023-12-02 15:48:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 438 ms / 2,000 ms
コード長 2,440 bytes
コンパイル時間 506 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 97,664 KB
最終ジャッジ日時 2024-09-26 19:21:00
合計ジャッジ時間 15,764 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,068 KB
testcase_01 AC 40 ms
55,816 KB
testcase_02 AC 39 ms
54,744 KB
testcase_03 AC 205 ms
97,664 KB
testcase_04 AC 163 ms
97,544 KB
testcase_05 AC 40 ms
55,444 KB
testcase_06 AC 319 ms
85,024 KB
testcase_07 AC 233 ms
81,592 KB
testcase_08 AC 301 ms
83,312 KB
testcase_09 AC 289 ms
83,692 KB
testcase_10 AC 308 ms
84,460 KB
testcase_11 AC 438 ms
92,268 KB
testcase_12 AC 178 ms
79,760 KB
testcase_13 AC 297 ms
83,424 KB
testcase_14 AC 374 ms
88,248 KB
testcase_15 AC 360 ms
87,396 KB
testcase_16 AC 143 ms
91,988 KB
testcase_17 AC 84 ms
78,028 KB
testcase_18 AC 91 ms
81,436 KB
testcase_19 AC 354 ms
89,684 KB
testcase_20 AC 331 ms
88,820 KB
testcase_21 AC 250 ms
87,740 KB
testcase_22 AC 198 ms
83,764 KB
testcase_23 AC 267 ms
84,956 KB
testcase_24 AC 134 ms
78,796 KB
testcase_25 AC 430 ms
89,860 KB
testcase_26 AC 270 ms
84,608 KB
testcase_27 AC 245 ms
88,572 KB
testcase_28 AC 360 ms
89,856 KB
testcase_29 AC 348 ms
92,440 KB
testcase_30 AC 235 ms
89,280 KB
testcase_31 AC 325 ms
89,080 KB
testcase_32 AC 246 ms
84,328 KB
testcase_33 AC 331 ms
90,540 KB
testcase_34 AC 403 ms
88,852 KB
testcase_35 AC 243 ms
90,772 KB
testcase_36 AC 398 ms
90,548 KB
testcase_37 AC 238 ms
84,744 KB
testcase_38 AC 326 ms
88,080 KB
testcase_39 AC 354 ms
87,496 KB
testcase_40 AC 277 ms
90,208 KB
testcase_41 AC 340 ms
93,000 KB
testcase_42 AC 272 ms
84,432 KB
testcase_43 AC 321 ms
87,172 KB
testcase_44 AC 289 ms
82,988 KB
testcase_45 AC 211 ms
80,832 KB
testcase_46 AC 381 ms
88,232 KB
testcase_47 AC 250 ms
82,732 KB
testcase_48 AC 302 ms
83,416 KB
testcase_49 AC 180 ms
79,764 KB
testcase_50 AC 247 ms
83,244 KB
testcase_51 AC 40 ms
55,300 KB
testcase_52 AC 139 ms
80,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
from collections import deque

INF = 10**18
class Dijkstra():
    # 全ての辺の距離が1のとき
    def bfs(self, graph, start, goal=-2):
        N = len(graph)
        is_visited = [False]*N
        is_visited[start] = True
        dists = [INF]*N
        dists[start] = 0
        
        que = deque([(start, 0)])
        while que:
            p, d = que.popleft()
            for next in graph[p]:
                if not is_visited[next]:
                    que.append((next, d+1))
                    dists[next] = d+1
                    is_visited[next] = True
                    if goal == next:
                        return dists
        return dists

    def dijkstra(self, graph, start):
        N = len(graph)
        dists = [INF for _ in range(N)]
        dists[start] = 0
        is_done = [False for _ in range(N)]
        hp = []
        # 経路復元が必要な場合
        prev = [-1 for _ in range(N)]
        heapq.heappush(hp, (dists[start], start))

        while hp:
            min_dist, min_v = heapq.heappop(hp)
            if is_done[min_v]:
                continue
            is_done[min_v] = True
            # 隣接リスト形式でコストが無いなら、ここのcostを削除することに注意
            for to, d in graph[min_v]:
                # 隣接リスト形式でコストが無いなら、ここのコストを1に変更することに注意
                dist = dists[min_v] + d
                if  dist < dists[to]:
                    dists[to] = dist
                    prev[to] = min_v
                    heapq.heappush(hp, (dists[to], to))
        return dists, prev

    # 後ろから順になっている事に注意
    def get_path(self, prev, end):
        path = []
        p = end
        while prev[p] != -1:
            path.append(p)
            p = prev[p]
        path.append(p)
        return path
    

N, M = map(int, input().split())
graph = [[] for _ in range(N)]

for _ in range(M):
    ui, vi = map(int, input().split())
    ui -= 1
    vi -= 1

    graph[ui].append((vi, 1))

dijk = Dijkstra()
dist_from_0, _ = dijk.dijkstra(graph, 0)
dist_from_N1, _ = dijk.dijkstra(graph, N-2)
dist_from_N, _ = dijk.dijkstra(graph, N-1)

ans = INF
ans = min(ans, dist_from_0[N-2] + dist_from_N1[N-1 ]+ dist_from_N[0])
ans = min(ans, dist_from_0[N-1] + dist_from_N[N-2] + dist_from_N1[0])
if ans == INF:
    print(-1)
else:
    print(ans)
0