結果

問題 No.2565 はじめてのおつかい
ユーザー timitimi
提出日時 2023-12-02 15:14:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 618 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,744 KB
最終ジャッジ日時 2024-09-26 18:18:57
合計ジャッジ時間 19,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 44 ms
52,608 KB
testcase_02 AC 44 ms
52,608 KB
testcase_03 AC 270 ms
95,360 KB
testcase_04 AC 195 ms
95,744 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 420 ms
86,452 KB
testcase_07 AC 282 ms
81,456 KB
testcase_08 AC 352 ms
83,632 KB
testcase_09 AC 367 ms
84,132 KB
testcase_10 AC 397 ms
84,568 KB
testcase_11 AC 618 ms
93,056 KB
testcase_12 AC 195 ms
79,744 KB
testcase_13 AC 352 ms
82,788 KB
testcase_14 AC 500 ms
87,812 KB
testcase_15 AC 520 ms
88,156 KB
testcase_16 AC 170 ms
87,552 KB
testcase_17 AC 101 ms
77,312 KB
testcase_18 AC 106 ms
79,488 KB
testcase_19 AC 487 ms
89,088 KB
testcase_20 AC 437 ms
87,220 KB
testcase_21 AC 317 ms
85,728 KB
testcase_22 AC 230 ms
82,364 KB
testcase_23 AC 322 ms
83,852 KB
testcase_24 AC 138 ms
78,208 KB
testcase_25 AC 535 ms
89,520 KB
testcase_26 AC 314 ms
82,960 KB
testcase_27 AC 292 ms
86,200 KB
testcase_28 AC 481 ms
88,712 KB
testcase_29 AC 460 ms
90,312 KB
testcase_30 AC 304 ms
86,656 KB
testcase_31 AC 439 ms
87,700 KB
testcase_32 AC 306 ms
83,076 KB
testcase_33 AC 405 ms
88,436 KB
testcase_34 AC 592 ms
90,420 KB
testcase_35 AC 284 ms
87,424 KB
testcase_36 AC 512 ms
89,460 KB
testcase_37 AC 306 ms
83,372 KB
testcase_38 AC 445 ms
87,932 KB
testcase_39 AC 482 ms
87,280 KB
testcase_40 AC 336 ms
88,136 KB
testcase_41 AC 440 ms
89,920 KB
testcase_42 AC 339 ms
84,208 KB
testcase_43 AC 428 ms
86,952 KB
testcase_44 AC 364 ms
82,936 KB
testcase_45 AC 220 ms
79,864 KB
testcase_46 AC 562 ms
89,216 KB
testcase_47 AC 311 ms
82,176 KB
testcase_48 AC 369 ms
83,952 KB
testcase_49 AC 193 ms
79,488 KB
testcase_50 AC 300 ms
83,328 KB
testcase_51 AC 43 ms
52,352 KB
testcase_52 AC 162 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def dijkstra(s):
    hq=[(0,s,0)]
    ans=[]
    heapq.heapify(hq) # リストを優先度付きキューに変換
    cost=[10**20]*N # 行ったことのないところはinf
    cost[s]=0 # 開始地点は0
    while hq:
      c,v,pre=heapq.heappop(hq)
      if c>cost[v]: # コストが現在のコストよりも高ければスルー v:now u:nex
        continue
      for d, u in E[v]:
        tmp=d+cost[v]
        if tmp<cost[u]:
          cost[u]=tmp
          heapq.heappush(hq,(tmp,u,v))
    return cost

N,M=map(int,input().split())
E=[[] for _ in range(N)]
D={}
for i in range(M):
  a,b=map(int,input().split())
  a-=1;b-=1
  E[a].append((1,b))

A=dijkstra(0)
B=dijkstra(N-2)
C=dijkstra(N-1)
D=[]
ansa=A[N-2]+B[N-1]+C[0]
ansb=A[N-1]+C[N-2]+B[0]
ans=min(ansa,ansb,10**20)
if ans==10**20:
  print(-1)
else:
  print(ans)
0