結果

問題 No.2565 はじめてのおつかい
ユーザー noriaokinoriaoki
提出日時 2023-12-02 16:34:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 745 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 116,096 KB
最終ジャッジ日時 2024-09-26 20:27:09
合計ジャッジ時間 14,275 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,760 KB
testcase_01 AC 51 ms
53,632 KB
testcase_02 AC 53 ms
53,632 KB
testcase_03 AC 380 ms
116,096 KB
testcase_04 AC 271 ms
116,096 KB
testcase_05 AC 51 ms
53,760 KB
testcase_06 AC 280 ms
98,432 KB
testcase_07 AC 187 ms
87,680 KB
testcase_08 AC 222 ms
85,120 KB
testcase_09 AC 250 ms
96,896 KB
testcase_10 AC 227 ms
90,496 KB
testcase_11 AC 347 ms
104,960 KB
testcase_12 AC 155 ms
82,304 KB
testcase_13 AC 224 ms
89,600 KB
testcase_14 AC 304 ms
99,200 KB
testcase_15 AC 296 ms
99,488 KB
testcase_16 AC 185 ms
98,816 KB
testcase_17 AC 109 ms
79,616 KB
testcase_18 AC 112 ms
81,664 KB
testcase_19 AC 296 ms
104,064 KB
testcase_20 AC 287 ms
101,632 KB
testcase_21 AC 236 ms
101,376 KB
testcase_22 AC 169 ms
88,960 KB
testcase_23 AC 211 ms
91,904 KB
testcase_24 AC 116 ms
78,720 KB
testcase_25 AC 303 ms
102,160 KB
testcase_26 AC 214 ms
91,648 KB
testcase_27 AC 216 ms
97,408 KB
testcase_28 AC 305 ms
103,808 KB
testcase_29 AC 323 ms
109,440 KB
testcase_30 AC 245 ms
103,328 KB
testcase_31 AC 314 ms
101,888 KB
testcase_32 AC 217 ms
91,904 KB
testcase_33 AC 305 ms
102,616 KB
testcase_34 AC 347 ms
101,632 KB
testcase_35 AC 246 ms
104,832 KB
testcase_36 AC 336 ms
103,424 KB
testcase_37 AC 217 ms
92,160 KB
testcase_38 AC 301 ms
101,120 KB
testcase_39 AC 312 ms
96,128 KB
testcase_40 AC 277 ms
106,752 KB
testcase_41 AC 336 ms
110,592 KB
testcase_42 AC 226 ms
91,520 KB
testcase_43 AC 277 ms
100,352 KB
testcase_44 AC 214 ms
85,120 KB
testcase_45 AC 163 ms
82,176 KB
testcase_46 AC 324 ms
100,992 KB
testcase_47 AC 232 ms
91,392 KB
testcase_48 AC 222 ms
90,368 KB
testcase_49 AC 161 ms
82,432 KB
testcase_50 AC 230 ms
97,408 KB
testcase_51 AC 49 ms
53,888 KB
testcase_52 AC 198 ms
99,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

graph = [[] for _ in range(N)]
for U, V in UV:
    U -= 1
    V -= 1
    graph[U].append(V)
import collections
def bfs(start, goal):
    q = collections.deque()
    q.append(start)
    reached = [0] * N
    while q:
        now = q.popleft()
        for g in graph[now]:
            if reached[g]:
                continue
            reached[g] = reached[now] + 1
            q.append(g)
    return reached[goal]

ans = 10**18
a = bfs(0, N-2)
b = bfs(N-2, N-1)
c = bfs(N-1, 0)
if a and b and c:
    ans = min(ans, a + b + c)
a = bfs(0, N-1)
b = bfs(N-1, N-2)
c = bfs(N-2, 0)
if a and b and c:
    ans = min(ans, a + b + c)

print(ans if ans != 10**18 else -1)
0