結果

問題 No.2565 はじめてのおつかい
ユーザー i_takui_taku
提出日時 2024-06-07 14:17:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 90,296 KB
最終ジャッジ日時 2024-06-07 14:17:55
合計ジャッジ時間 10,870 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,748 KB
testcase_01 AC 43 ms
53,876 KB
testcase_02 AC 39 ms
55,516 KB
testcase_03 AC 219 ms
90,296 KB
testcase_04 AC 157 ms
90,208 KB
testcase_05 AC 38 ms
55,336 KB
testcase_06 AC 168 ms
80,072 KB
testcase_07 AC 119 ms
78,340 KB
testcase_08 AC 134 ms
79,240 KB
testcase_09 AC 150 ms
79,004 KB
testcase_10 AC 140 ms
79,364 KB
testcase_11 AC 215 ms
84,428 KB
testcase_12 AC 102 ms
77,656 KB
testcase_13 AC 139 ms
78,916 KB
testcase_14 AC 184 ms
81,816 KB
testcase_15 AC 179 ms
81,020 KB
testcase_16 AC 154 ms
85,720 KB
testcase_17 AC 86 ms
77,688 KB
testcase_18 AC 89 ms
79,384 KB
testcase_19 AC 193 ms
83,148 KB
testcase_20 AC 175 ms
82,692 KB
testcase_21 AC 155 ms
82,712 KB
testcase_22 AC 116 ms
80,604 KB
testcase_23 AC 136 ms
80,704 KB
testcase_24 AC 82 ms
77,304 KB
testcase_25 AC 190 ms
83,392 KB
testcase_26 AC 139 ms
80,496 KB
testcase_27 AC 157 ms
83,052 KB
testcase_28 AC 208 ms
83,372 KB
testcase_29 AC 208 ms
85,164 KB
testcase_30 AC 171 ms
83,924 KB
testcase_31 AC 187 ms
82,744 KB
testcase_32 AC 137 ms
80,384 KB
testcase_33 AC 188 ms
83,292 KB
testcase_34 AC 203 ms
82,764 KB
testcase_35 AC 164 ms
84,744 KB
testcase_36 AC 205 ms
83,972 KB
testcase_37 AC 138 ms
80,332 KB
testcase_38 AC 189 ms
82,144 KB
testcase_39 AC 178 ms
81,500 KB
testcase_40 AC 195 ms
85,084 KB
testcase_41 AC 203 ms
86,024 KB
testcase_42 AC 133 ms
80,100 KB
testcase_43 AC 167 ms
81,476 KB
testcase_44 AC 132 ms
78,960 KB
testcase_45 AC 99 ms
77,968 KB
testcase_46 AC 192 ms
81,504 KB
testcase_47 AC 139 ms
78,956 KB
testcase_48 AC 139 ms
79,200 KB
testcase_49 AC 105 ms
77,344 KB
testcase_50 AC 158 ms
78,952 KB
testcase_51 AC 41 ms
54,744 KB
testcase_52 AC 116 ms
77,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(s):
    dist = [INF] * N
    dist[s] = 0
    que = deque([s])
    while que:
        v = que.popleft()
        for nv in g[v]:
            if dist[nv] == INF:
                dist[nv] = dist[v] + 1
                que.append(nv)
    return dist

INF = 1 << 60
N, M = map(int, input().split())
g = [[] for _ in range(N)]
for _ in range(M):
    u, v = map(int, input().split())
    u, v = u - 1, v - 1
    g[u].append(v)
dist_1 = bfs(0)
dist_N = bfs(N - 1)
dist_Nm1 = bfs(N - 2)
ans = min(dist_1[-1] + dist_N[N - 2] + dist_Nm1[0], dist_1[N - 2] + dist_Nm1[-1] + dist_N[0])
print(ans if ans < INF else -1)
0