結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-11-03 15:52:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 886 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-09-25 18:37:24
合計ジャッジ時間 17,747 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 587 ms
24,832 KB
testcase_04 AC 485 ms
24,960 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 345 ms
16,000 KB
testcase_07 AC 194 ms
13,568 KB
testcase_08 AC 179 ms
14,080 KB
testcase_09 AC 326 ms
15,488 KB
testcase_10 AC 216 ms
14,592 KB
testcase_11 AC 494 ms
20,352 KB
testcase_12 AC 152 ms
12,160 KB
testcase_13 AC 228 ms
14,464 KB
testcase_14 AC 380 ms
17,536 KB
testcase_15 AC 370 ms
16,980 KB
testcase_16 AC 357 ms
22,016 KB
testcase_17 AC 101 ms
12,416 KB
testcase_18 AC 122 ms
15,104 KB
testcase_19 AC 460 ms
19,340 KB
testcase_20 AC 407 ms
18,432 KB
testcase_21 AC 366 ms
18,560 KB
testcase_22 AC 216 ms
15,616 KB
testcase_23 AC 257 ms
16,000 KB
testcase_24 AC 68 ms
11,776 KB
testcase_25 AC 412 ms
18,688 KB
testcase_26 AC 245 ms
15,360 KB
testcase_27 AC 355 ms
18,868 KB
testcase_28 AC 406 ms
19,200 KB
testcase_29 AC 441 ms
20,992 KB
testcase_30 AC 392 ms
19,840 KB
testcase_31 AC 403 ms
18,816 KB
testcase_32 AC 238 ms
15,524 KB
testcase_33 AC 406 ms
19,216 KB
testcase_34 AC 410 ms
18,176 KB
testcase_35 AC 387 ms
20,864 KB
testcase_36 AC 440 ms
19,584 KB
testcase_37 AC 241 ms
15,616 KB
testcase_38 AC 428 ms
18,308 KB
testcase_39 AC 343 ms
16,628 KB
testcase_40 AC 445 ms
20,956 KB
testcase_41 AC 465 ms
21,504 KB
testcase_42 AC 244 ms
15,488 KB
testcase_43 AC 368 ms
17,464 KB
testcase_44 AC 210 ms
14,208 KB
testcase_45 AC 113 ms
12,800 KB
testcase_46 AC 378 ms
17,516 KB
testcase_47 AC 283 ms
14,720 KB
testcase_48 AC 231 ms
14,336 KB
testcase_49 AC 147 ms
12,288 KB
testcase_50 AC 346 ms
15,232 KB
testcase_51 AC 30 ms
10,880 KB
testcase_52 AC 342 ms
12,288 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, goal):
    visited = [False] * N
    que = deque([(start, 0)])
    
    while que:
        now, d = que.popleft()
        
        for next in graph[now]:
            if visited[next] == True:
                continue
            if next == goal:
                return d + 1
            visited[next] = True
            que.append((next, d + 1))
        
    return INF

# 町1 -> 町N-1 -> 町N -> 町1 の最短経路の長さ
ans_1 = bfs(0, N-2) + bfs(N-2, N-1) + bfs(N-1, 0)

# 町1 -> 町N -> 町N-1 -> 町1 の最短経路の長さ
ans_2 = bfs(0, N-1) + bfs(N-1, N-2) + bfs(N-2, 0)

ans = min(ans_1, ans_2)

if ans < INF:
	print(ans)
else:
	print(-1)
0