結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 611 ms
35,840 KB
testcase_04 AC 498 ms
35,840 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 361 ms
16,384 KB
testcase_07 AC 200 ms
13,696 KB
testcase_08 AC 192 ms
14,336 KB
testcase_09 AC 331 ms
15,744 KB
testcase_10 AC 219 ms
14,848 KB
testcase_11 AC 484 ms
21,376 KB
testcase_12 AC 161 ms
12,544 KB
testcase_13 AC 226 ms
14,464 KB
testcase_14 AC 356 ms
18,176 KB
testcase_15 AC 371 ms
17,664 KB
testcase_16 AC 360 ms
23,680 KB
testcase_17 AC 101 ms
12,672 KB
testcase_18 AC 123 ms
15,744 KB
testcase_19 AC 431 ms
20,224 KB
testcase_20 AC 380 ms
19,200 KB
testcase_21 AC 358 ms
19,584 KB
testcase_22 AC 212 ms
16,256 KB
testcase_23 AC 254 ms
16,384 KB
testcase_24 AC 68 ms
11,776 KB
testcase_25 AC 385 ms
19,328 KB
testcase_26 AC 250 ms
16,000 KB
testcase_27 AC 361 ms
20,096 KB
testcase_28 AC 429 ms
19,840 KB
testcase_29 AC 473 ms
22,144 KB
testcase_30 AC 385 ms
20,992 KB
testcase_31 AC 388 ms
19,584 KB
testcase_32 AC 236 ms
16,000 KB
testcase_33 AC 391 ms
20,608 KB
testcase_34 AC 406 ms
18,816 KB
testcase_35 AC 376 ms
22,144 KB
testcase_36 AC 394 ms
20,352 KB
testcase_37 AC 242 ms
16,256 KB
testcase_38 AC 395 ms
19,072 KB
testcase_39 AC 341 ms
17,408 KB
testcase_40 AC 442 ms
22,144 KB
testcase_41 AC 459 ms
22,912 KB
testcase_42 AC 252 ms
15,744 KB
testcase_43 AC 373 ms
18,176 KB
testcase_44 AC 201 ms
14,464 KB
testcase_45 AC 117 ms
13,056 KB
testcase_46 AC 412 ms
17,920 KB
testcase_47 AC 301 ms
14,848 KB
testcase_48 AC 234 ms
14,720 KB
testcase_49 AC 156 ms
12,288 KB
testcase_50 AC 375 ms
15,360 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 356 ms
12,416 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):
    dists = [INF]*N
    dists[start] = 0
    
    que = deque([(start, 0)])
    
    while que:
        now, d = que.popleft()
        
        for next in graph[now]:
            if dists[next] < INF:
                continue
            dists[next] = d + 1
            que.append((next, d + 1))
    
    return dists

di = {
    0: bfs(0),
    N - 2: bfs(N - 2),
    N - 1: bfs(N - 1)
}

# 町1 -> 町N-1 -> 町N -> 町1 の最短経路の長さ
ans_1 = di[0][N - 2] + di[N - 2][N - 1] + di[N - 1][0]

# 町1 -> 町N -> 町N-1 -> 町1 の最短経路の長さ
ans_2 = di[0][N - 1] + di[N - 1][N - 2] + di[N - 2][0]

ans = min(ans_1, ans_2)

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