結果

問題 No.2565 はじめてのおつかい
ユーザー ああいいああいい
提出日時 2023-12-02 20:11:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 90,368 KB
最終ジャッジ日時 2024-09-26 21:37:10
合計ジャッジ時間 9,705 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 41 ms
54,016 KB
testcase_03 AC 201 ms
90,240 KB
testcase_04 AC 156 ms
90,368 KB
testcase_05 AC 44 ms
53,632 KB
testcase_06 AC 175 ms
79,872 KB
testcase_07 AC 129 ms
78,208 KB
testcase_08 AC 134 ms
79,488 KB
testcase_09 AC 155 ms
79,488 KB
testcase_10 AC 148 ms
79,488 KB
testcase_11 AC 203 ms
84,352 KB
testcase_12 AC 114 ms
77,568 KB
testcase_13 AC 145 ms
78,464 KB
testcase_14 AC 171 ms
82,048 KB
testcase_15 AC 175 ms
81,792 KB
testcase_16 AC 142 ms
85,376 KB
testcase_17 AC 90 ms
77,440 KB
testcase_18 AC 95 ms
78,976 KB
testcase_19 AC 194 ms
83,200 KB
testcase_20 AC 170 ms
82,432 KB
testcase_21 AC 159 ms
82,304 KB
testcase_22 AC 126 ms
80,128 KB
testcase_23 AC 138 ms
80,256 KB
testcase_24 AC 94 ms
77,312 KB
testcase_25 AC 189 ms
82,944 KB
testcase_26 AC 142 ms
80,128 KB
testcase_27 AC 165 ms
83,072 KB
testcase_28 AC 195 ms
82,944 KB
testcase_29 AC 203 ms
85,248 KB
testcase_30 AC 164 ms
83,456 KB
testcase_31 AC 180 ms
82,432 KB
testcase_32 AC 138 ms
79,872 KB
testcase_33 AC 170 ms
83,200 KB
testcase_34 AC 188 ms
82,816 KB
testcase_35 AC 159 ms
84,352 KB
testcase_36 AC 193 ms
84,224 KB
testcase_37 AC 133 ms
80,256 KB
testcase_38 AC 175 ms
81,792 KB
testcase_39 AC 175 ms
81,280 KB
testcase_40 AC 175 ms
84,992 KB
testcase_41 AC 199 ms
85,760 KB
testcase_42 AC 143 ms
79,616 KB
testcase_43 AC 160 ms
81,920 KB
testcase_44 AC 138 ms
79,232 KB
testcase_45 AC 109 ms
77,312 KB
testcase_46 AC 187 ms
81,408 KB
testcase_47 AC 143 ms
79,232 KB
testcase_48 AC 150 ms
78,720 KB
testcase_49 AC 114 ms
77,696 KB
testcase_50 AC 153 ms
78,464 KB
testcase_51 AC 44 ms
53,504 KB
testcase_52 AC 128 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    u,v = map(int,input().split())
    G[u-1].append(v- 1)
    
from collections import deque

def calc(start):
    inf = 10 ** 8
    d = [inf] * N
    d[start] = 0
    stack = deque()
    
    stack.append(start)
    while stack:
        now = stack.popleft()
        for v in G[now]:
            if d[v] == inf:
                d[v] = d[now] + 1
                stack.append(v)
    return d

d0 = calc(0)
d1 = calc(N -2)
d2 = calc(N - 1)

tmp = d0[N - 2] + d2[0] + d1[-1]
tmp2 = d0[-1] + d2[N-2] + d1[0]
ans = min(tmp,tmp2)
if ans >= 10 ** 7:
    print(-1)
else:
    print(ans)
0