結果

問題 No.2565 はじめてのおつかい
ユーザー flippergoflippergo
提出日時 2024-11-15 12:46:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 94,080 KB
最終ジャッジ日時 2024-11-15 12:47:12
合計ジャッジ時間 12,171 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,248 KB
testcase_01 AC 49 ms
53,632 KB
testcase_02 AC 47 ms
53,632 KB
testcase_03 AC 239 ms
93,952 KB
testcase_04 AC 184 ms
94,080 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 177 ms
80,316 KB
testcase_07 AC 136 ms
78,336 KB
testcase_08 AC 169 ms
80,000 KB
testcase_09 AC 167 ms
79,744 KB
testcase_10 AC 163 ms
80,768 KB
testcase_11 AC 235 ms
87,296 KB
testcase_12 AC 122 ms
77,440 KB
testcase_13 AC 156 ms
79,232 KB
testcase_14 AC 236 ms
82,760 KB
testcase_15 AC 200 ms
82,132 KB
testcase_16 AC 172 ms
93,824 KB
testcase_17 AC 97 ms
78,208 KB
testcase_18 AC 105 ms
82,560 KB
testcase_19 AC 215 ms
85,248 KB
testcase_20 AC 204 ms
85,376 KB
testcase_21 AC 201 ms
85,248 KB
testcase_22 AC 140 ms
81,792 KB
testcase_23 AC 154 ms
81,536 KB
testcase_24 AC 102 ms
77,568 KB
testcase_25 AC 225 ms
85,248 KB
testcase_26 AC 162 ms
80,768 KB
testcase_27 AC 183 ms
86,272 KB
testcase_28 AC 245 ms
85,376 KB
testcase_29 AC 232 ms
88,960 KB
testcase_30 AC 196 ms
87,424 KB
testcase_31 AC 204 ms
85,120 KB
testcase_32 AC 171 ms
80,896 KB
testcase_33 AC 237 ms
87,424 KB
testcase_34 AC 226 ms
83,396 KB
testcase_35 AC 232 ms
90,240 KB
testcase_36 AC 232 ms
87,296 KB
testcase_37 AC 153 ms
81,484 KB
testcase_38 AC 204 ms
83,200 KB
testcase_39 AC 232 ms
82,504 KB
testcase_40 AC 219 ms
88,960 KB
testcase_41 AC 235 ms
90,240 KB
testcase_42 AC 155 ms
80,768 KB
testcase_43 AC 186 ms
82,432 KB
testcase_44 AC 160 ms
80,384 KB
testcase_45 AC 133 ms
78,592 KB
testcase_46 AC 216 ms
82,372 KB
testcase_47 AC 159 ms
79,360 KB
testcase_48 AC 162 ms
80,128 KB
testcase_49 AC 121 ms
77,568 KB
testcase_50 AC 166 ms
78,976 KB
testcase_51 AC 45 ms
53,632 KB
testcase_52 AC 138 ms
77,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N,M = map(int,input().split())
G = {i:[] for i in range(1,N+1)}
for _ in range(M):
    a,b = map(int,input().split())
    G[a].append(b)
INFTY = 10**5+100
dist1 = [INFTY]*(N+1)
dist1[1] = 0
que = deque([1])
while que:
    x = que.popleft()
    for y in G[x]:
        if dist1[y]>=INFTY:
            dist1[y] = dist1[x]+1
            que.append(y)
dist2 = [INFTY]*(N+1)
dist2[N-1] = 0
que = deque([N-1])
while que:
    x = que.popleft()
    for y in G[x]:
        if dist2[y]>=INFTY:
            dist2[y] = dist2[x]+1
            que.append(y)
dist3 = [INFTY]*(N+1)
dist3[N] = 0
que = deque([N])
while que:
    x = que.popleft()
    for y in G[x]:
        if dist3[y]>=INFTY:
            dist3[y] = dist3[x]+1
            que.append(y)
ans = dist1[N-1]+dist2[N]+dist3[1]
ans = min(ans,dist1[N]+dist3[N-1]+dist2[1])
if ans>=INFTY:
    print(-1)
else:
    print(ans)
0