結果

問題 No.2565 はじめてのおつかい
ユーザー mealymealy
提出日時 2023-12-02 16:09:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,558 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 100,864 KB
最終ジャッジ日時 2024-09-26 19:53:57
合計ジャッジ時間 11,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,144 KB
testcase_01 AC 46 ms
53,888 KB
testcase_02 AC 45 ms
54,144 KB
testcase_03 AC 282 ms
100,864 KB
testcase_04 AC 211 ms
100,864 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 202 ms
86,272 KB
testcase_07 AC 152 ms
81,408 KB
testcase_08 AC 169 ms
83,456 KB
testcase_09 AC 192 ms
86,400 KB
testcase_10 AC 178 ms
84,992 KB
testcase_11 AC 253 ms
94,592 KB
testcase_12 AC 142 ms
81,536 KB
testcase_13 AC 176 ms
84,352 KB
testcase_14 AC 223 ms
89,472 KB
testcase_15 AC 216 ms
86,784 KB
testcase_16 AC 168 ms
87,552 KB
testcase_17 AC 105 ms
77,312 KB
testcase_18 AC 115 ms
81,280 KB
testcase_19 AC 234 ms
91,904 KB
testcase_20 AC 199 ms
86,784 KB
testcase_21 WA -
testcase_22 AC 145 ms
82,304 KB
testcase_23 AC 172 ms
86,272 KB
testcase_24 AC 113 ms
77,696 KB
testcase_25 AC 252 ms
91,392 KB
testcase_26 WA -
testcase_27 AC 179 ms
86,784 KB
testcase_28 AC 234 ms
92,544 KB
testcase_29 WA -
testcase_30 AC 206 ms
93,184 KB
testcase_31 AC 214 ms
91,776 KB
testcase_32 AC 172 ms
85,632 KB
testcase_33 AC 225 ms
92,288 KB
testcase_34 AC 238 ms
91,264 KB
testcase_35 AC 203 ms
94,208 KB
testcase_36 AC 242 ms
92,416 KB
testcase_37 WA -
testcase_38 AC 228 ms
91,264 KB
testcase_39 WA -
testcase_40 AC 212 ms
88,960 KB
testcase_41 AC 245 ms
95,872 KB
testcase_42 WA -
testcase_43 AC 202 ms
86,784 KB
testcase_44 AC 172 ms
83,328 KB
testcase_45 AC 136 ms
80,000 KB
testcase_46 AC 237 ms
90,240 KB
testcase_47 AC 184 ms
86,016 KB
testcase_48 AC 184 ms
84,736 KB
testcase_49 AC 143 ms
81,408 KB
testcase_50 AC 197 ms
87,808 KB
testcase_51 AC 46 ms
54,016 KB
testcase_52 AC 182 ms
87,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Input_kyopro:
    def II(self): return int(input())
    def MI(self): return map(int,input().split())
    def MS(self): return map(str,input().split())
    def LMI(self): return list(self.MI())
    def LMS(self): return list(self.MS())
    def LLI(self,N): return [self.LMI() for _ in range(N)]
    def LLS(self,N): return [self.LMS() for _ in range(N)]
    def LS(self,N): return [input() for _ in range(N)]
    def LSL(self,N): return [list(input()) for _ in range(N)]
    def LI(self,N): return [self.II() for _ in range(N)]
I=Input_kyopro()
#入力
from collections import deque
N,M=I.MI()
uv=I.LLI(M)
G=[[] for _ in range(N)]
for u,v in uv:
    u-=1
    v-=1
    G[u].append(v)
q=deque()
q.append(0)
dist=[-1]*N
dist[0]=0
while q:
    pos=q.popleft()
    for nex in G[pos]:
        if dist[nex]!=-1:
            continue
        dist[nex]=dist[pos]+1
        q.append(nex)
q=deque()
q.append(N-1)
dist1=[-1]*N
dist1[N-1]=0
while q:
    pos=q.popleft()
    for nex in G[pos]:
        if dist1[nex]!=-1:
            continue
        dist1[nex]=dist1[pos]+1
        q.append(nex)
q=deque()
q.append(N-2)
dist2=[-1]*N
dist2[N-2]=0
while q:
    pos=q.popleft()
    for nex in G[pos]:
        if dist2[nex]!=-1:
            continue
        dist2[nex]=dist2[pos]+1
        q.append(nex)
ans=float('inf')
if dist[-1]==-1 or dist[-2]==-1:
    print(-1)
else:
    if dist1[N-2]!=-1 and dist2[0]!=-1:
        ans=min(ans,dist[N-1]+dist1[N-2]+dist2[0])
    if dist2[N-1]!=-1 and dist1[0]!=-1:
        ans=min(ans,dist[N-2]+dist2[N-1]+dist1[0])
    print(ans)
0