結果

問題 No.2565 はじめてのおつかい
ユーザー mymelochanmymelochan
提出日時 2023-12-02 14:59:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 208 ms / 2,000 ms
コード長 1,111 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,984 KB
最終ジャッジ日時 2024-09-26 17:49:53
合計ジャッジ時間 10,394 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,528 KB
testcase_01 AC 49 ms
54,272 KB
testcase_02 AC 49 ms
54,784 KB
testcase_03 AC 201 ms
89,984 KB
testcase_04 AC 151 ms
89,472 KB
testcase_05 AC 48 ms
54,912 KB
testcase_06 AC 172 ms
80,000 KB
testcase_07 AC 128 ms
78,848 KB
testcase_08 AC 138 ms
79,232 KB
testcase_09 AC 151 ms
79,616 KB
testcase_10 AC 145 ms
80,128 KB
testcase_11 AC 208 ms
84,736 KB
testcase_12 AC 108 ms
77,312 KB
testcase_13 AC 140 ms
78,976 KB
testcase_14 AC 177 ms
82,048 KB
testcase_15 AC 179 ms
81,280 KB
testcase_16 AC 141 ms
85,632 KB
testcase_17 AC 89 ms
77,568 KB
testcase_18 AC 94 ms
79,872 KB
testcase_19 AC 186 ms
83,456 KB
testcase_20 AC 178 ms
82,816 KB
testcase_21 AC 159 ms
82,560 KB
testcase_22 AC 119 ms
80,384 KB
testcase_23 AC 136 ms
80,896 KB
testcase_24 AC 91 ms
77,312 KB
testcase_25 AC 203 ms
83,584 KB
testcase_26 AC 150 ms
80,768 KB
testcase_27 AC 157 ms
83,072 KB
testcase_28 AC 190 ms
83,584 KB
testcase_29 AC 198 ms
84,992 KB
testcase_30 AC 158 ms
83,584 KB
testcase_31 AC 182 ms
83,072 KB
testcase_32 AC 145 ms
80,896 KB
testcase_33 AC 179 ms
83,712 KB
testcase_34 AC 192 ms
82,304 KB
testcase_35 AC 165 ms
84,736 KB
testcase_36 AC 202 ms
83,712 KB
testcase_37 AC 139 ms
80,640 KB
testcase_38 AC 175 ms
82,304 KB
testcase_39 AC 182 ms
81,408 KB
testcase_40 AC 176 ms
84,608 KB
testcase_41 AC 205 ms
85,376 KB
testcase_42 AC 142 ms
80,000 KB
testcase_43 AC 175 ms
82,176 KB
testcase_44 AC 145 ms
79,872 KB
testcase_45 AC 113 ms
78,336 KB
testcase_46 AC 200 ms
81,536 KB
testcase_47 AC 149 ms
79,488 KB
testcase_48 AC 147 ms
79,616 KB
testcase_49 AC 110 ms
77,440 KB
testcase_50 AC 151 ms
79,360 KB
testcase_51 AC 49 ms
54,656 KB
testcase_52 AC 112 ms
77,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations
from math import sin,cos
#from math import isqrt #DO NOT USE PyPy

ipt = sys.stdin.readline
iin = lambda :int(ipt())
lmin = lambda :list(map(int,ipt().split()))

INF = 1<<30

def bfs01(s,N,G):
    dq = deque()
    dq.append(s)
    cost = [INF]*N
    cost[s] = 0
    while dq:
        cur = dq.pop()
        for nxt in G[cur]:
            if cost[nxt] != INF:
                continue
            cost[nxt] = cost[cur]+1
            dq.appendleft(nxt)
    return cost
#############################################################

N,M = lmin()
G = [[] for _ in range(N)]
for _ in range(M):
    a,b = lmin()
    G[a-1].append(b-1)

cost1 = bfs01(0,N,G)
cost2 = bfs01(N-2,N,G)
cost3 = bfs01(N-1,N,G)

ans = min(cost1[N-2]+cost2[N-1]+cost3[0],cost1[N-1]+cost3[N-2]+cost2[0])
if ans >= INF:
    print(-1)
else:
    print(ans)
0