結果

問題 No.2565 はじめてのおつかい
ユーザー ntudantuda
提出日時 2023-12-04 20:22:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-09-26 23:11:54
合計ジャッジ時間 10,985 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,224 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 293 ms
100,864 KB
testcase_04 AC 208 ms
100,736 KB
testcase_05 AC 42 ms
51,840 KB
testcase_06 AC 181 ms
86,272 KB
testcase_07 AC 138 ms
81,280 KB
testcase_08 AC 142 ms
82,432 KB
testcase_09 AC 178 ms
86,144 KB
testcase_10 AC 150 ms
81,920 KB
testcase_11 AC 230 ms
94,848 KB
testcase_12 AC 122 ms
79,360 KB
testcase_13 AC 144 ms
80,640 KB
testcase_14 AC 199 ms
88,704 KB
testcase_15 AC 195 ms
88,832 KB
testcase_16 AC 172 ms
92,288 KB
testcase_17 AC 102 ms
76,800 KB
testcase_18 AC 110 ms
79,360 KB
testcase_19 AC 224 ms
92,928 KB
testcase_20 AC 226 ms
90,624 KB
testcase_21 AC 186 ms
88,704 KB
testcase_22 AC 143 ms
82,688 KB
testcase_23 AC 170 ms
86,016 KB
testcase_24 AC 103 ms
76,928 KB
testcase_25 AC 205 ms
91,392 KB
testcase_26 AC 149 ms
82,432 KB
testcase_27 AC 177 ms
87,808 KB
testcase_28 AC 213 ms
92,928 KB
testcase_29 AC 211 ms
90,624 KB
testcase_30 AC 197 ms
87,936 KB
testcase_31 AC 217 ms
92,032 KB
testcase_32 AC 156 ms
82,688 KB
testcase_33 AC 211 ms
92,544 KB
testcase_34 AC 214 ms
91,008 KB
testcase_35 AC 196 ms
88,704 KB
testcase_36 AC 221 ms
91,520 KB
testcase_37 AC 152 ms
82,432 KB
testcase_38 AC 218 ms
91,136 KB
testcase_39 AC 184 ms
88,320 KB
testcase_40 AC 211 ms
90,368 KB
testcase_41 AC 205 ms
90,880 KB
testcase_42 AC 161 ms
85,248 KB
testcase_43 AC 205 ms
89,344 KB
testcase_44 AC 155 ms
83,072 KB
testcase_45 AC 122 ms
79,872 KB
testcase_46 AC 190 ms
86,528 KB
testcase_47 AC 159 ms
83,072 KB
testcase_48 AC 149 ms
81,792 KB
testcase_49 AC 126 ms
79,104 KB
testcase_50 AC 178 ms
84,864 KB
testcase_51 AC 42 ms
52,096 KB
testcase_52 AC 176 ms
86,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

INF = 10 ** 6
def bfs(a, b):
    nv = [True] * (N + 1)
    q = [a]
    cnt = 0
    while q:
        q2 = []
        while q:
            x = q.pop(-1)
            if x == b:
                return cnt
            for y in E[x]:
                if nv[y]:
                    nv[y] = False
                    q2.append(y)
        cnt += 1
        q, q2 = q2, q
    return INF

ans = min(bfs(1, N - 1) + bfs(N - 1, N) + bfs(N, 1), bfs(1, N) + bfs(N, N - 1) + bfs(N - 1, 1))
if ans >= INF:
    print(-1)
else:
    print(ans)
0