結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-09-21 20:18:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 788 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 90,240 KB
最終ジャッジ日時 2024-07-07 13:50:14
合計ジャッジ時間 9,023 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 35 ms
53,888 KB
testcase_02 AC 35 ms
53,376 KB
testcase_03 AC 161 ms
89,984 KB
testcase_04 AC 130 ms
90,240 KB
testcase_05 AC 37 ms
53,504 KB
testcase_06 AC 128 ms
79,616 KB
testcase_07 AC 100 ms
78,080 KB
testcase_08 AC 106 ms
78,976 KB
testcase_09 AC 122 ms
78,976 KB
testcase_10 AC 110 ms
79,436 KB
testcase_11 AC 156 ms
83,968 KB
testcase_12 AC 84 ms
76,672 KB
testcase_13 AC 103 ms
78,208 KB
testcase_14 AC 129 ms
81,432 KB
testcase_15 AC 129 ms
80,896 KB
testcase_16 AC 116 ms
85,768 KB
testcase_17 AC 81 ms
77,568 KB
testcase_18 AC 85 ms
79,360 KB
testcase_19 AC 156 ms
82,944 KB
testcase_20 AC 135 ms
82,304 KB
testcase_21 AC 140 ms
82,304 KB
testcase_22 AC 108 ms
80,640 KB
testcase_23 AC 111 ms
80,512 KB
testcase_24 AC 78 ms
77,056 KB
testcase_25 AC 135 ms
82,432 KB
testcase_26 AC 110 ms
80,128 KB
testcase_27 AC 124 ms
83,076 KB
testcase_28 AC 151 ms
82,944 KB
testcase_29 AC 152 ms
85,120 KB
testcase_30 AC 135 ms
83,784 KB
testcase_31 AC 142 ms
82,432 KB
testcase_32 AC 107 ms
80,336 KB
testcase_33 AC 140 ms
83,432 KB
testcase_34 AC 137 ms
81,920 KB
testcase_35 AC 132 ms
84,608 KB
testcase_36 AC 144 ms
83,456 KB
testcase_37 AC 113 ms
80,128 KB
testcase_38 AC 140 ms
81,792 KB
testcase_39 AC 130 ms
81,152 KB
testcase_40 AC 148 ms
84,608 KB
testcase_41 AC 161 ms
85,376 KB
testcase_42 AC 108 ms
79,872 KB
testcase_43 AC 120 ms
81,152 KB
testcase_44 AC 107 ms
78,976 KB
testcase_45 AC 86 ms
77,652 KB
testcase_46 AC 135 ms
81,152 KB
testcase_47 AC 112 ms
79,068 KB
testcase_48 AC 105 ms
78,872 KB
testcase_49 AC 85 ms
76,544 KB
testcase_50 AC 116 ms
78,208 KB
testcase_51 AC 36 ms
53,632 KB
testcase_52 AC 104 ms
76,928 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):
    distances = [INF]*N
    distances[start] = 0
    
    que = deque([(start, 0)])
    
    while que:
        now, d = que.popleft()
        
        for next in graph[now]:
            if distances[next] < INF:
                continue
            distances[next] = d + 1
            que.append((next, d + 1))
    
    return distances

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

ans = min(
    dist[0][N-2] + dist[N-2][N-1] + dist[N-1][0],
    dist[0][N-1] + dist[N-1][N-2] + dist[N-2][0]
)

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

0