結果

問題 No.1565 Union
ユーザー googol_S0googol_S0
提出日時 2021-06-26 13:46:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 884 ms / 2,000 ms
コード長 597 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 113,844 KB
最終ジャッジ日時 2025-01-03 12:41:41
合計ジャッジ時間 13,717 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
from heapq import *
G=[[] for i in range(N)]
D=[0]*N
INF=10**17
def ijk(s):
  global D,INF,G
  for i in range(len(G)):
    D[i]=INF
  D[s]=0
  Q=[]
  heapify(Q)
  heappush(Q,(0,s))
  p,v,e=0,0,0
  while len(Q):
    p=heappop(Q)
    v=p[1]
    if D[v]<p[0]:
      continue
    for i in range(len(G[v])):
      e=G[v][i]
      if D[e[0]]>D[v]+e[1]:
        D[e[0]]=D[v]+e[1]
        heappush(Q,(D[e[0]],e[0]))

for i in range(M):
  a,b=map(int,input().split())
  a-=1
  b-=1
  G[a].append((b,1))
  G[b].append((a,1))
ijk(0)
if D[-1]<INF:
  print(D[-1])
else:
  print(-1)
0