結果

問題 No.2565 はじめてのおつかい
ユーザー loop0919loop0919
提出日時 2023-10-31 13:24:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 814 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 90,028 KB
最終ジャッジ日時 2024-09-25 17:36:01
合計ジャッジ時間 10,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
55,360 KB
testcase_01 AC 39 ms
53,980 KB
testcase_02 AC 39 ms
54,436 KB
testcase_03 AC 175 ms
90,028 KB
testcase_04 AC 141 ms
89,836 KB
testcase_05 AC 40 ms
55,324 KB
testcase_06 AC 142 ms
80,080 KB
testcase_07 AC 108 ms
78,196 KB
testcase_08 AC 106 ms
79,308 KB
testcase_09 AC 130 ms
79,096 KB
testcase_10 AC 122 ms
79,212 KB
testcase_11 AC 161 ms
84,296 KB
testcase_12 AC 94 ms
76,708 KB
testcase_13 AC 111 ms
78,392 KB
testcase_14 AC 139 ms
81,616 KB
testcase_15 AC 148 ms
81,120 KB
testcase_16 AC 128 ms
85,792 KB
testcase_17 AC 83 ms
77,272 KB
testcase_18 AC 84 ms
79,428 KB
testcase_19 AC 153 ms
83,648 KB
testcase_20 AC 151 ms
82,540 KB
testcase_21 AC 151 ms
82,592 KB
testcase_22 AC 118 ms
80,840 KB
testcase_23 AC 118 ms
80,476 KB
testcase_24 AC 81 ms
77,300 KB
testcase_25 AC 148 ms
82,648 KB
testcase_26 AC 123 ms
79,856 KB
testcase_27 AC 144 ms
83,168 KB
testcase_28 AC 170 ms
83,104 KB
testcase_29 AC 178 ms
85,220 KB
testcase_30 AC 148 ms
83,708 KB
testcase_31 AC 161 ms
82,988 KB
testcase_32 AC 127 ms
80,068 KB
testcase_33 AC 168 ms
83,280 KB
testcase_34 AC 162 ms
82,080 KB
testcase_35 AC 153 ms
84,756 KB
testcase_36 AC 176 ms
83,532 KB
testcase_37 AC 124 ms
80,472 KB
testcase_38 AC 156 ms
81,960 KB
testcase_39 AC 155 ms
80,880 KB
testcase_40 AC 175 ms
84,720 KB
testcase_41 AC 187 ms
85,396 KB
testcase_42 AC 121 ms
80,092 KB
testcase_43 AC 135 ms
81,224 KB
testcase_44 AC 116 ms
79,168 KB
testcase_45 AC 92 ms
77,516 KB
testcase_46 AC 151 ms
81,184 KB
testcase_47 AC 124 ms
78,728 KB
testcase_48 AC 116 ms
79,316 KB
testcase_49 AC 95 ms
76,980 KB
testcase_50 AC 138 ms
78,676 KB
testcase_51 AC 39 ms
55,276 KB
testcase_52 AC 113 ms
77,180 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