結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー paruf4paruf4
提出日時 2020-05-29 22:39:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,179 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 158,240 KB
最終ジャッジ日時 2024-11-06 06:30:06
合計ジャッジ時間 25,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,816 KB
testcase_01 AC 40 ms
53,488 KB
testcase_02 AC 603 ms
116,744 KB
testcase_03 AC 848 ms
158,240 KB
testcase_04 AC 838 ms
156,212 KB
testcase_05 AC 662 ms
156,664 KB
testcase_06 AC 644 ms
156,544 KB
testcase_07 AC 136 ms
92,552 KB
testcase_08 AC 342 ms
151,040 KB
testcase_09 AC 96 ms
83,028 KB
testcase_10 AC 190 ms
108,708 KB
testcase_11 AC 154 ms
98,756 KB
testcase_12 AC 133 ms
91,888 KB
testcase_13 AC 764 ms
131,368 KB
testcase_14 AC 860 ms
138,872 KB
testcase_15 AC 1,045 ms
149,688 KB
testcase_16 AC 535 ms
114,020 KB
testcase_17 AC 1,100 ms
155,348 KB
testcase_18 AC 380 ms
102,292 KB
testcase_19 AC 1,021 ms
149,792 KB
testcase_20 AC 320 ms
96,532 KB
testcase_21 AC 422 ms
109,256 KB
testcase_22 AC 947 ms
143,268 KB
testcase_23 AC 54 ms
67,184 KB
testcase_24 AC 59 ms
71,180 KB
testcase_25 AC 125 ms
91,232 KB
testcase_26 AC 518 ms
116,364 KB
testcase_27 AC 559 ms
117,508 KB
testcase_28 AC 993 ms
145,436 KB
testcase_29 AC 169 ms
86,128 KB
testcase_30 AC 1,019 ms
148,844 KB
testcase_31 AC 697 ms
128,492 KB
testcase_32 AC 480 ms
109,980 KB
testcase_33 AC 1,179 ms
149,164 KB
testcase_34 AC 400 ms
104,176 KB
testcase_35 AC 1,032 ms
150,344 KB
testcase_36 AC 68 ms
71,904 KB
testcase_37 AC 99 ms
77,728 KB
testcase_38 AC 72 ms
74,396 KB
testcase_39 AC 100 ms
77,412 KB
testcase_40 AC 50 ms
62,848 KB
testcase_41 AC 1,085 ms
150,784 KB
testcase_42 AC 360 ms
100,376 KB
testcase_43 AC 583 ms
116,600 KB
testcase_44 AC 248 ms
91,836 KB
testcase_45 AC 573 ms
115,076 KB
testcase_46 AC 39 ms
54,200 KB
testcase_47 AC 41 ms
54,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
from heapq import heappop,heappush
def dijkstra(s,n,edge):
  dist=[float("inf")]*n
  dist[s]=0
  used=[-1]*n
  hq=[[dist[s],s]]
  while hq:
    d,cur=heappop(hq)
    if dist[cur]<d:continue 
    for nx,nxd in edge[cur]:
      if dist[cur]+nxd<dist[nx]:
        dist[nx]=dist[cur]+nxd
        used[nx]=cur
        heappush(hq,[dist[cur]+nxd,nx])
  return dist

n,m=map(int,input().split())
x,y=map(int,input().split())
pq=[tuple(map(int,input().split())) for i in range(n)]
G=[[] for i in range(n)]
for i in range(m):
  p,q=map(int,input().split())
  p-=1
  q-=1
  c=((pq[q][0]-pq[p][0])**2+(pq[q][1]-pq[p][1])**2)**0.5
  G[p].append([q,c])
  G[q].append([p,c])
d=dijkstra(x-1,n,G)
print(d[y-1])
0