結果

問題 No.2565 はじめてのおつかい
ユーザー nikoro256nikoro256
提出日時 2023-12-08 18:54:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 90,112 KB
最終ジャッジ日時 2024-09-27 02:57:18
合計ジャッジ時間 11,016 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,248 KB
testcase_01 AC 46 ms
53,504 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 233 ms
89,984 KB
testcase_04 AC 174 ms
90,112 KB
testcase_05 AC 45 ms
53,504 KB
testcase_06 AC 192 ms
81,024 KB
testcase_07 AC 141 ms
78,336 KB
testcase_08 AC 159 ms
79,488 KB
testcase_09 AC 176 ms
79,488 KB
testcase_10 AC 171 ms
80,128 KB
testcase_11 AC 247 ms
85,120 KB
testcase_12 AC 124 ms
77,312 KB
testcase_13 AC 162 ms
79,616 KB
testcase_14 AC 210 ms
82,944 KB
testcase_15 AC 212 ms
81,792 KB
testcase_16 AC 163 ms
85,632 KB
testcase_17 AC 99 ms
77,312 KB
testcase_18 AC 106 ms
79,488 KB
testcase_19 AC 225 ms
83,328 KB
testcase_20 AC 202 ms
82,944 KB
testcase_21 AC 183 ms
82,432 KB
testcase_22 AC 140 ms
80,640 KB
testcase_23 AC 158 ms
80,384 KB
testcase_24 AC 100 ms
77,184 KB
testcase_25 AC 212 ms
83,072 KB
testcase_26 AC 168 ms
80,640 KB
testcase_27 AC 177 ms
83,200 KB
testcase_28 AC 221 ms
83,200 KB
testcase_29 AC 227 ms
85,248 KB
testcase_30 AC 186 ms
83,712 KB
testcase_31 AC 214 ms
83,200 KB
testcase_32 AC 158 ms
80,256 KB
testcase_33 AC 205 ms
83,840 KB
testcase_34 AC 227 ms
82,816 KB
testcase_35 AC 185 ms
84,864 KB
testcase_36 AC 233 ms
83,968 KB
testcase_37 AC 157 ms
80,384 KB
testcase_38 AC 206 ms
82,560 KB
testcase_39 AC 214 ms
82,048 KB
testcase_40 AC 208 ms
84,992 KB
testcase_41 AC 222 ms
85,888 KB
testcase_42 AC 157 ms
79,744 KB
testcase_43 AC 188 ms
81,664 KB
testcase_44 AC 162 ms
79,360 KB
testcase_45 AC 123 ms
77,824 KB
testcase_46 AC 228 ms
81,792 KB
testcase_47 AC 162 ms
79,104 KB
testcase_48 AC 176 ms
80,256 KB
testcase_49 AC 124 ms
77,312 KB
testcase_50 AC 173 ms
78,848 KB
testcase_51 AC 46 ms
53,248 KB
testcase_52 AC 136 ms
77,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def bfs(s):
    dq=deque()
    dq.append([s,0])
    high=[10**9 for _ in range(N)]
    high[s]=0
    while len(dq)!=0:
        p,h=dq.popleft()
        for e in edge[p]:
            if  high[e]==10**9:
                dq.append([e,h+1])
                high[e]=h+1
    return high

N,M=map(int,input().split())
edge=[[] for _ in range(N)]
for i in range(M):
    u,v=map(int,input().split())
    u-=1
    v-=1
    edge[u].append(v)
dist0=bfs(0)
distn_=bfs(N-2)
distn=bfs(N-1)
ans=min(dist0[N-2]+distn_[N-1]+distn[0],dist0[N-1]+distn[N-2]+distn_[0])
if ans>10**9:
    print(-1)
else:
    print(ans)
0