結果

問題 No.2565 はじめてのおつかい
ユーザー hiro1729hiro1729
提出日時 2023-12-02 15:00:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 587 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,384 KB
最終ジャッジ日時 2024-09-26 17:53:24
合計ジャッジ時間 9,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,760 KB
testcase_01 AC 39 ms
53,760 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 186 ms
90,240 KB
testcase_04 AC 147 ms
90,384 KB
testcase_05 AC 40 ms
53,376 KB
testcase_06 AC 153 ms
79,932 KB
testcase_07 AC 117 ms
78,336 KB
testcase_08 AC 123 ms
79,348 KB
testcase_09 AC 142 ms
79,532 KB
testcase_10 AC 131 ms
79,232 KB
testcase_11 AC 199 ms
84,608 KB
testcase_12 AC 101 ms
77,596 KB
testcase_13 AC 127 ms
78,592 KB
testcase_14 AC 160 ms
81,792 KB
testcase_15 AC 154 ms
81,684 KB
testcase_16 AC 128 ms
85,760 KB
testcase_17 AC 78 ms
77,448 KB
testcase_18 AC 82 ms
79,376 KB
testcase_19 AC 163 ms
83,584 KB
testcase_20 AC 151 ms
82,164 KB
testcase_21 AC 141 ms
82,560 KB
testcase_22 AC 110 ms
80,208 KB
testcase_23 AC 124 ms
80,320 KB
testcase_24 AC 82 ms
77,568 KB
testcase_25 AC 172 ms
83,292 KB
testcase_26 AC 130 ms
79,860 KB
testcase_27 AC 146 ms
83,072 KB
testcase_28 AC 174 ms
82,804 KB
testcase_29 AC 183 ms
85,172 KB
testcase_30 AC 150 ms
83,376 KB
testcase_31 AC 170 ms
82,560 KB
testcase_32 AC 125 ms
80,384 KB
testcase_33 AC 164 ms
83,456 KB
testcase_34 AC 170 ms
82,816 KB
testcase_35 AC 152 ms
84,736 KB
testcase_36 AC 180 ms
84,192 KB
testcase_37 AC 121 ms
80,128 KB
testcase_38 AC 155 ms
81,900 KB
testcase_39 AC 163 ms
81,152 KB
testcase_40 AC 162 ms
84,864 KB
testcase_41 AC 184 ms
85,760 KB
testcase_42 AC 125 ms
79,744 KB
testcase_43 AC 143 ms
82,048 KB
testcase_44 AC 122 ms
79,196 KB
testcase_45 AC 97 ms
77,336 KB
testcase_46 AC 167 ms
81,408 KB
testcase_47 AC 131 ms
79,104 KB
testcase_48 AC 134 ms
79,228 KB
testcase_49 AC 101 ms
77,380 KB
testcase_50 AC 142 ms
78,592 KB
testcase_51 AC 41 ms
53,760 KB
testcase_52 AC 111 ms
77,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
g = [[] for _ in range(n)]
for _ in range(m):
	u, v = map(int, input().split())
	u -= 1
	v -= 1
	g[u].append(v)

from collections import deque

def bfs(u):
	q = deque([u])
	d = [-1] * n
	d[u] = 0
	while q:
		v = q.popleft()
		for i in g[v]:
			if d[i] == -1:
				d[i] = d[v] + 1
				q.append(i)
	return d
d0 = bfs(0)
d1 = bfs(n - 2)
d2 = bfs(n - 1)
ans = 10 ** 9
if d0[n-2]>0 and d1[n-1]>0 and d2[0]>0:
	ans=min(ans,d0[n-2] + d1[n-1] + d2[0])
if d0[n-1]>0 and d2[n-2]>0 and d1[0]>0:
	ans=min(ans,d0[n-1] + d2[n-2] + d1[0])
print(-1 if ans == 10 ** 9 else ans)
0