結果

問題 No.2565 はじめてのおつかい
ユーザー n_nan_na
提出日時 2024-01-05 00:33:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 92,020 KB
最終ジャッジ日時 2024-09-27 18:55:22
合計ジャッジ時間 8,523 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,536 KB
testcase_01 AC 42 ms
54,712 KB
testcase_02 AC 37 ms
53,560 KB
testcase_03 AC 173 ms
92,020 KB
testcase_04 AC 142 ms
91,908 KB
testcase_05 AC 37 ms
55,348 KB
testcase_06 AC 157 ms
80,508 KB
testcase_07 AC 112 ms
78,380 KB
testcase_08 AC 118 ms
79,484 KB
testcase_09 AC 135 ms
79,508 KB
testcase_10 AC 134 ms
80,660 KB
testcase_11 AC 181 ms
85,016 KB
testcase_12 AC 95 ms
77,716 KB
testcase_13 AC 124 ms
78,504 KB
testcase_14 AC 152 ms
82,572 KB
testcase_15 AC 153 ms
82,296 KB
testcase_16 AC 125 ms
87,780 KB
testcase_17 AC 74 ms
77,552 KB
testcase_18 AC 78 ms
80,348 KB
testcase_19 AC 155 ms
84,140 KB
testcase_20 AC 144 ms
83,836 KB
testcase_21 AC 133 ms
84,216 KB
testcase_22 AC 107 ms
81,612 KB
testcase_23 AC 120 ms
81,356 KB
testcase_24 AC 76 ms
77,092 KB
testcase_25 AC 159 ms
84,436 KB
testcase_26 AC 120 ms
80,676 KB
testcase_27 AC 127 ms
84,476 KB
testcase_28 AC 157 ms
83,276 KB
testcase_29 AC 169 ms
86,392 KB
testcase_30 AC 138 ms
85,124 KB
testcase_31 AC 152 ms
83,732 KB
testcase_32 AC 118 ms
81,076 KB
testcase_33 AC 153 ms
84,920 KB
testcase_34 AC 169 ms
83,656 KB
testcase_35 AC 133 ms
86,436 KB
testcase_36 AC 164 ms
85,796 KB
testcase_37 AC 117 ms
81,440 KB
testcase_38 AC 154 ms
82,756 KB
testcase_39 AC 156 ms
81,872 KB
testcase_40 AC 153 ms
86,120 KB
testcase_41 AC 164 ms
87,012 KB
testcase_42 AC 118 ms
80,592 KB
testcase_43 AC 146 ms
82,504 KB
testcase_44 AC 120 ms
79,600 KB
testcase_45 AC 91 ms
77,604 KB
testcase_46 AC 161 ms
82,944 KB
testcase_47 AC 122 ms
78,936 KB
testcase_48 AC 124 ms
79,848 KB
testcase_49 AC 96 ms
77,540 KB
testcase_50 AC 141 ms
78,828 KB
testcase_51 AC 38 ms
55,100 KB
testcase_52 AC 108 ms
77,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = float("inf")
def bfs(start, edge): #始点,edge
    _N = len(edge)
    dist = [INF]*_N
    dist[start] = 0
    deq = deque()
    deq.append(start)
    while len(deq) > 0:
        crr = deq.popleft()
        for nxt in edge[crr]:
            if dist[nxt] == INF:
                dist[nxt] = dist[crr] + 1
                deq.append(nxt)
    return dist

#--------------------------------------------------
N,M = map(int,input().split())

E = [[] for _ in range(N)]
for _ in range(M):
    u,v = map(int,input().split())
    E[u-1].append(v-1)

b1 = bfs(0,E)
b2 = bfs(N-2,E)
b3 = bfs(N-1,E)

r1 = b1[N-2] + b2[N-1] + b3[0]
r2 = b1[N-1] + b3[N-2] + b2[0]
r3 = b1[N-2] + b2[0] + b1[N-1] + b3[0]

ans = min(r1,r2,r3)
if ans == INF:
    print(-1)
else:
    print(ans)
    
0