結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,252 KB
testcase_01 AC 41 ms
54,008 KB
testcase_02 AC 41 ms
54,212 KB
testcase_03 AC 188 ms
90,084 KB
testcase_04 AC 153 ms
90,076 KB
testcase_05 AC 41 ms
55,120 KB
testcase_06 AC 151 ms
80,148 KB
testcase_07 AC 115 ms
78,268 KB
testcase_08 AC 117 ms
79,168 KB
testcase_09 AC 143 ms
79,208 KB
testcase_10 AC 135 ms
79,560 KB
testcase_11 AC 186 ms
84,580 KB
testcase_12 AC 99 ms
76,888 KB
testcase_13 AC 124 ms
78,632 KB
testcase_14 AC 157 ms
81,928 KB
testcase_15 AC 157 ms
81,120 KB
testcase_16 AC 145 ms
86,016 KB
testcase_17 AC 85 ms
77,404 KB
testcase_18 AC 88 ms
79,404 KB
testcase_19 AC 174 ms
83,396 KB
testcase_20 AC 159 ms
82,540 KB
testcase_21 AC 153 ms
82,768 KB
testcase_22 AC 122 ms
80,400 KB
testcase_23 AC 126 ms
80,632 KB
testcase_24 AC 86 ms
77,500 KB
testcase_25 AC 158 ms
82,740 KB
testcase_26 AC 126 ms
80,148 KB
testcase_27 AC 151 ms
83,032 KB
testcase_28 AC 179 ms
82,984 KB
testcase_29 AC 195 ms
84,760 KB
testcase_30 AC 166 ms
84,184 KB
testcase_31 AC 174 ms
82,760 KB
testcase_32 AC 131 ms
80,020 KB
testcase_33 AC 170 ms
83,512 KB
testcase_34 AC 172 ms
81,940 KB
testcase_35 AC 168 ms
85,112 KB
testcase_36 AC 173 ms
83,272 KB
testcase_37 AC 131 ms
80,200 KB
testcase_38 AC 171 ms
82,020 KB
testcase_39 AC 158 ms
81,308 KB
testcase_40 AC 186 ms
85,044 KB
testcase_41 AC 192 ms
85,640 KB
testcase_42 AC 129 ms
79,852 KB
testcase_43 AC 150 ms
81,696 KB
testcase_44 AC 125 ms
79,300 KB
testcase_45 AC 99 ms
77,740 KB
testcase_46 AC 173 ms
81,200 KB
testcase_47 AC 135 ms
78,844 KB
testcase_48 AC 130 ms
79,100 KB
testcase_49 AC 98 ms
76,972 KB
testcase_50 AC 142 ms
78,704 KB
testcase_51 AC 42 ms
54,228 KB
testcase_52 AC 119 ms
77,012 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)
print(ans if ans < INF else -1)
0