結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー pluto77pluto77
提出日時 2020-06-19 13:34:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,186 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 159,172 KB
最終ジャッジ日時 2024-07-03 13:20:51
合計ジャッジ時間 26,315 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,344 KB
testcase_01 AC 36 ms
53,344 KB
testcase_02 AC 676 ms
118,152 KB
testcase_03 AC 961 ms
159,172 KB
testcase_04 AC 932 ms
157,800 KB
testcase_05 AC 765 ms
158,600 KB
testcase_06 AC 753 ms
158,864 KB
testcase_07 AC 187 ms
97,396 KB
testcase_08 AC 458 ms
151,272 KB
testcase_09 AC 130 ms
83,876 KB
testcase_10 AC 261 ms
109,892 KB
testcase_11 AC 207 ms
99,388 KB
testcase_12 AC 168 ms
95,176 KB
testcase_13 AC 807 ms
132,780 KB
testcase_14 AC 897 ms
138,872 KB
testcase_15 AC 1,075 ms
149,996 KB
testcase_16 AC 573 ms
114,408 KB
testcase_17 AC 1,162 ms
156,772 KB
testcase_18 AC 389 ms
104,280 KB
testcase_19 AC 1,044 ms
153,196 KB
testcase_20 AC 335 ms
97,292 KB
testcase_21 AC 430 ms
110,976 KB
testcase_22 AC 1,000 ms
144,512 KB
testcase_23 AC 69 ms
74,124 KB
testcase_24 AC 79 ms
77,732 KB
testcase_25 AC 158 ms
91,208 KB
testcase_26 AC 571 ms
117,468 KB
testcase_27 AC 617 ms
119,464 KB
testcase_28 AC 1,025 ms
146,752 KB
testcase_29 AC 194 ms
86,696 KB
testcase_30 AC 1,051 ms
150,104 KB
testcase_31 AC 724 ms
128,900 KB
testcase_32 AC 508 ms
110,872 KB
testcase_33 AC 1,186 ms
150,540 KB
testcase_34 AC 419 ms
104,604 KB
testcase_35 AC 1,019 ms
152,648 KB
testcase_36 AC 85 ms
76,984 KB
testcase_37 AC 133 ms
78,720 KB
testcase_38 AC 93 ms
77,640 KB
testcase_39 AC 117 ms
78,172 KB
testcase_40 AC 57 ms
66,440 KB
testcase_41 AC 1,117 ms
151,968 KB
testcase_42 AC 393 ms
100,480 KB
testcase_43 AC 627 ms
117,296 KB
testcase_44 AC 280 ms
91,976 KB
testcase_45 AC 601 ms
116,092 KB
testcase_46 AC 36 ms
52,844 KB
testcase_47 AC 35 ms
53,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1065
from heapq import heappop,heappush
import math

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=math.sqrt((pq[q][0]-pq[p][0])**2+(pq[q][1]-pq[p][1])**2)
 G[p].append([q,c])
 G[q].append([p,c])
d=dijkstra(x-1,n,G)
print(d[y-1])
0