結果

問題 No.2565 はじめてのおつかい
ユーザー n_nan_na
提出日時 2024-01-05 00:29:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 802 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 92,292 KB
最終ジャッジ日時 2024-09-27 18:55:11
合計ジャッジ時間 9,590 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,852 KB
testcase_01 AC 36 ms
53,916 KB
testcase_02 AC 42 ms
53,916 KB
testcase_03 AC 176 ms
91,892 KB
testcase_04 AC 151 ms
92,292 KB
testcase_05 AC 40 ms
54,272 KB
testcase_06 WA -
testcase_07 AC 110 ms
77,856 KB
testcase_08 WA -
testcase_09 AC 147 ms
79,732 KB
testcase_10 WA -
testcase_11 AC 187 ms
84,544 KB
testcase_12 AC 99 ms
77,320 KB
testcase_13 AC 118 ms
78,692 KB
testcase_14 AC 145 ms
82,180 KB
testcase_15 AC 161 ms
82,832 KB
testcase_16 AC 122 ms
87,912 KB
testcase_17 AC 75 ms
77,704 KB
testcase_18 AC 79 ms
80,336 KB
testcase_19 AC 158 ms
84,204 KB
testcase_20 AC 142 ms
83,812 KB
testcase_21 AC 134 ms
83,860 KB
testcase_22 AC 105 ms
81,460 KB
testcase_23 AC 114 ms
81,452 KB
testcase_24 AC 75 ms
77,736 KB
testcase_25 AC 152 ms
84,316 KB
testcase_26 AC 123 ms
80,852 KB
testcase_27 AC 133 ms
84,164 KB
testcase_28 AC 161 ms
83,596 KB
testcase_29 WA -
testcase_30 AC 135 ms
85,268 KB
testcase_31 AC 153 ms
83,800 KB
testcase_32 AC 119 ms
81,032 KB
testcase_33 AC 151 ms
84,936 KB
testcase_34 AC 164 ms
83,900 KB
testcase_35 AC 145 ms
86,656 KB
testcase_36 AC 183 ms
85,824 KB
testcase_37 AC 119 ms
81,376 KB
testcase_38 AC 152 ms
83,008 KB
testcase_39 AC 153 ms
82,012 KB
testcase_40 AC 150 ms
86,104 KB
testcase_41 AC 169 ms
87,156 KB
testcase_42 AC 125 ms
80,564 KB
testcase_43 AC 140 ms
82,712 KB
testcase_44 AC 122 ms
79,924 KB
testcase_45 AC 97 ms
77,448 KB
testcase_46 AC 162 ms
83,080 KB
testcase_47 AC 122 ms
78,944 KB
testcase_48 AC 136 ms
79,948 KB
testcase_49 AC 96 ms
77,728 KB
testcase_50 AC 130 ms
79,240 KB
testcase_51 AC 36 ms
55,344 KB
testcase_52 AC 109 ms
77,568 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] + b1[0]

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