結果

問題 No.2565 はじめてのおつかい
ユーザー ちーぴんちーぴん
提出日時 2023-12-02 16:06:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 333 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 637 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 93,312 KB
最終ジャッジ日時 2024-09-26 19:51:35
合計ジャッジ時間 13,137 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,504 KB
testcase_01 AC 48 ms
53,504 KB
testcase_02 AC 48 ms
53,760 KB
testcase_03 AC 283 ms
93,312 KB
testcase_04 AC 196 ms
92,672 KB
testcase_05 AC 53 ms
53,888 KB
testcase_06 AC 232 ms
81,152 KB
testcase_07 AC 173 ms
78,976 KB
testcase_08 AC 185 ms
80,640 KB
testcase_09 AC 216 ms
80,128 KB
testcase_10 AC 185 ms
80,640 KB
testcase_11 AC 321 ms
86,168 KB
testcase_12 AC 147 ms
77,440 KB
testcase_13 AC 200 ms
79,616 KB
testcase_14 AC 264 ms
83,584 KB
testcase_15 AC 246 ms
82,432 KB
testcase_16 AC 179 ms
87,936 KB
testcase_17 AC 104 ms
77,696 KB
testcase_18 AC 109 ms
80,512 KB
testcase_19 AC 261 ms
84,096 KB
testcase_20 AC 233 ms
84,480 KB
testcase_21 AC 220 ms
83,840 KB
testcase_22 AC 172 ms
81,408 KB
testcase_23 AC 206 ms
81,920 KB
testcase_24 AC 122 ms
77,312 KB
testcase_25 AC 294 ms
84,096 KB
testcase_26 AC 182 ms
81,536 KB
testcase_27 AC 184 ms
84,480 KB
testcase_28 AC 235 ms
83,712 KB
testcase_29 AC 250 ms
87,424 KB
testcase_30 AC 213 ms
85,248 KB
testcase_31 AC 273 ms
83,800 KB
testcase_32 AC 185 ms
81,920 KB
testcase_33 AC 237 ms
85,504 KB
testcase_34 AC 275 ms
83,348 KB
testcase_35 AC 215 ms
86,400 KB
testcase_36 AC 333 ms
85,088 KB
testcase_37 AC 200 ms
82,048 KB
testcase_38 AC 278 ms
83,584 KB
testcase_39 AC 260 ms
83,072 KB
testcase_40 AC 245 ms
86,272 KB
testcase_41 AC 281 ms
86,944 KB
testcase_42 AC 183 ms
80,768 KB
testcase_43 AC 234 ms
83,328 KB
testcase_44 AC 205 ms
80,768 KB
testcase_45 AC 141 ms
77,952 KB
testcase_46 AC 246 ms
82,560 KB
testcase_47 AC 185 ms
79,104 KB
testcase_48 AC 200 ms
80,128 KB
testcase_49 AC 137 ms
77,696 KB
testcase_50 AC 189 ms
79,616 KB
testcase_51 AC 52 ms
53,760 KB
testcase_52 AC 152 ms
77,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
考察
経路のパターン
1 -> N-1 -> N -> 1
1 -> N -> N-1 -> 1
それ以外は最適にはならないのでは?
"""
from collections import deque


INF = 10**18

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1; b -= 1
    G[a].append(b)


def bfs(s, t) -> int:
    dist = [INF] * N
    dist[s] = 0
    Q = deque([s])
    while Q:
        now = Q.popleft()
        if now == t:
            return dist[now]
        for nxt in G[now]:
            if dist[nxt] > dist[now] + 1:
                dist[nxt] = dist[now] + 1
                Q.append(nxt)
    return INF


S = 0
T = N-1
StoN_1 = bfs(S, T-1)
StoN = bfs(S, T)
NtoS = bfs(T, S)
N_1toS = bfs(T-1, S)
N_1toN = bfs(T-1, T)
NtoN_1 = bfs(T, T-1)

ans = min(StoN + NtoN_1 + N_1toS, StoN_1 + N_1toN + NtoS)
print(ans if ans < 10**17 else -1)
0