結果

問題 No.2565 はじめてのおつかい
ユーザー rlangevinrlangevin
提出日時 2023-12-11 08:57:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 817 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 91,312 KB
最終ジャッジ日時 2024-09-27 04:22:49
合計ジャッジ時間 7,948 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 40 ms
53,376 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 156 ms
91,312 KB
testcase_04 AC 114 ms
91,312 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 123 ms
80,384 KB
testcase_07 AC 94 ms
77,824 KB
testcase_08 AC 109 ms
79,760 KB
testcase_09 AC 113 ms
79,104 KB
testcase_10 AC 108 ms
80,000 KB
testcase_11 AC 161 ms
85,056 KB
testcase_12 AC 82 ms
76,800 KB
testcase_13 AC 107 ms
78,976 KB
testcase_14 AC 133 ms
82,692 KB
testcase_15 AC 133 ms
81,920 KB
testcase_16 AC 100 ms
87,424 KB
testcase_17 AC 58 ms
71,680 KB
testcase_18 AC 60 ms
75,520 KB
testcase_19 AC 133 ms
83,584 KB
testcase_20 AC 132 ms
83,328 KB
testcase_21 AC 114 ms
83,328 KB
testcase_22 AC 87 ms
80,384 KB
testcase_23 AC 111 ms
81,408 KB
testcase_24 AC 64 ms
72,064 KB
testcase_25 AC 143 ms
84,224 KB
testcase_26 AC 106 ms
80,512 KB
testcase_27 AC 113 ms
84,352 KB
testcase_28 AC 135 ms
83,456 KB
testcase_29 AC 151 ms
85,592 KB
testcase_30 AC 115 ms
84,608 KB
testcase_31 AC 125 ms
83,456 KB
testcase_32 AC 97 ms
80,128 KB
testcase_33 AC 125 ms
84,480 KB
testcase_34 AC 149 ms
83,200 KB
testcase_35 AC 114 ms
86,400 KB
testcase_36 AC 145 ms
85,504 KB
testcase_37 AC 100 ms
80,128 KB
testcase_38 AC 131 ms
82,688 KB
testcase_39 AC 131 ms
81,664 KB
testcase_40 AC 122 ms
85,428 KB
testcase_41 AC 149 ms
86,784 KB
testcase_42 AC 104 ms
80,256 KB
testcase_43 AC 124 ms
82,188 KB
testcase_44 AC 109 ms
79,488 KB
testcase_45 AC 84 ms
78,592 KB
testcase_46 AC 143 ms
82,524 KB
testcase_47 AC 104 ms
78,464 KB
testcase_48 AC 112 ms
79,488 KB
testcase_49 AC 80 ms
76,800 KB
testcase_50 AC 112 ms
78,208 KB
testcase_51 AC 41 ms
53,504 KB
testcase_52 AC 80 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

from collections import deque
inf = 10 ** 18
def bfs(G, s, N):
    Q = deque([])
    dist = [inf] * N
    par = [inf] * N
    dist[s] = 0
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        Q.append(u)

    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != inf:
                continue
            dist[v] = dist[u] + 1
            par[v] = u
            Q.append(v)
            
    return dist


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

D0 = bfs(G, 0, N)
D1 = bfs(G, N-2, N)
D2 = bfs(G, N-1, N)
ans = min(D0[N - 2] + D1[N - 1] + D2[0], D0[N - 1] + D2[N - 2] + D1[0])
print(ans) if ans < 10 ** 10 else print(-1)
0