結果

問題 No.2565 はじめてのおつかい
ユーザー ゼットゼット
提出日時 2023-12-21 00:26:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 806 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 90,268 KB
最終ジャッジ日時 2024-09-27 10:19:50
合計ジャッジ時間 9,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,888 KB
testcase_01 AC 43 ms
54,016 KB
testcase_02 AC 40 ms
53,760 KB
testcase_03 AC 188 ms
90,268 KB
testcase_04 AC 154 ms
90,240 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 160 ms
80,000 KB
testcase_07 AC 122 ms
78,140 KB
testcase_08 AC 135 ms
79,504 KB
testcase_09 AC 149 ms
79,360 KB
testcase_10 AC 144 ms
79,896 KB
testcase_11 AC 191 ms
84,352 KB
testcase_12 AC 115 ms
77,432 KB
testcase_13 AC 138 ms
78,464 KB
testcase_14 AC 185 ms
82,560 KB
testcase_15 AC 180 ms
81,664 KB
testcase_16 AC 142 ms
85,576 KB
testcase_17 AC 89 ms
77,440 KB
testcase_18 AC 94 ms
79,216 KB
testcase_19 AC 180 ms
83,700 KB
testcase_20 AC 170 ms
82,212 KB
testcase_21 AC 158 ms
82,284 KB
testcase_22 AC 126 ms
80,512 KB
testcase_23 AC 138 ms
80,128 KB
testcase_24 AC 92 ms
77,696 KB
testcase_25 AC 186 ms
83,072 KB
testcase_26 AC 138 ms
80,128 KB
testcase_27 AC 156 ms
82,816 KB
testcase_28 AC 182 ms
83,132 KB
testcase_29 AC 195 ms
85,220 KB
testcase_30 AC 168 ms
83,496 KB
testcase_31 AC 174 ms
82,784 KB
testcase_32 AC 142 ms
80,256 KB
testcase_33 AC 181 ms
83,200 KB
testcase_34 AC 189 ms
82,816 KB
testcase_35 AC 169 ms
84,588 KB
testcase_36 AC 201 ms
84,452 KB
testcase_37 AC 144 ms
80,512 KB
testcase_38 AC 179 ms
81,920 KB
testcase_39 AC 185 ms
81,664 KB
testcase_40 AC 187 ms
85,120 KB
testcase_41 AC 201 ms
85,728 KB
testcase_42 AC 144 ms
79,872 KB
testcase_43 AC 162 ms
81,664 KB
testcase_44 AC 144 ms
79,448 KB
testcase_45 AC 118 ms
77,780 KB
testcase_46 AC 192 ms
82,240 KB
testcase_47 AC 141 ms
79,232 KB
testcase_48 AC 145 ms
79,544 KB
testcase_49 AC 113 ms
77,440 KB
testcase_50 AC 153 ms
78,848 KB
testcase_51 AC 43 ms
53,760 KB
testcase_52 AC 127 ms
77,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
G=[[] for i in range(N)]
for i in range(M):
  a,b=map(int,input().split())
  G[a-1].append(b-1)
from collections import deque
S=deque()
dist=[10**10]*N
dist[0]=0
S.append(0)
while S:
  x=S.popleft()
  for y in G[x]:
    if dist[y]<10**8:
      continue
    dist[y]=dist[x]+1
    S.append(y)
L1=[10**10]*N
L1[N-1]=0
S=deque()
S.append(N-1)
while S:
  x=S.popleft()
  for y in G[x]:
    if L1[y]<10**8:
      continue
    L1[y]=L1[x]+1
    S.append(y)
L2=[10**10]*N
L2[N-2]=0
S=deque()
S.append(N-2)
while S:
  x=S.popleft()
  for y in G[x]:
    if L2[y]<10**8:
      continue
    L2[y]=L2[x]+1
    S.append(y)
result=10**10
ans=dist[N-1]+L1[N-2]+L2[0]
result=min(result,ans)
ans=dist[N-2]+L2[N-1]+L1[0]
result=min(result,ans)
if result>10**8:
  print(-1)
  exit()
print(result)
0