結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー qibqib
提出日時 2022-10-23 03:34:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,018 ms / 2,000 ms
コード長 731 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 142,740 KB
最終ジャッジ日時 2024-07-02 00:44:48
合計ジャッジ時間 25,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,608 KB
testcase_01 AC 43 ms
52,864 KB
testcase_02 AC 586 ms
110,268 KB
testcase_03 AC 772 ms
142,740 KB
testcase_04 AC 884 ms
141,980 KB
testcase_05 AC 564 ms
140,188 KB
testcase_06 AC 570 ms
140,184 KB
testcase_07 AC 212 ms
94,464 KB
testcase_08 AC 475 ms
139,136 KB
testcase_09 AC 144 ms
80,128 KB
testcase_10 AC 274 ms
104,320 KB
testcase_11 AC 220 ms
93,184 KB
testcase_12 AC 180 ms
87,552 KB
testcase_13 AC 737 ms
121,516 KB
testcase_14 AC 796 ms
127,360 KB
testcase_15 AC 912 ms
135,804 KB
testcase_16 AC 511 ms
104,704 KB
testcase_17 AC 986 ms
140,988 KB
testcase_18 AC 375 ms
96,420 KB
testcase_19 AC 915 ms
137,984 KB
testcase_20 AC 335 ms
93,468 KB
testcase_21 AC 427 ms
101,632 KB
testcase_22 AC 858 ms
131,768 KB
testcase_23 AC 84 ms
73,344 KB
testcase_24 AC 96 ms
77,312 KB
testcase_25 AC 177 ms
86,912 KB
testcase_26 AC 528 ms
109,184 KB
testcase_27 AC 575 ms
109,440 KB
testcase_28 AC 885 ms
131,752 KB
testcase_29 AC 222 ms
83,712 KB
testcase_30 AC 913 ms
136,692 KB
testcase_31 AC 638 ms
119,988 KB
testcase_32 AC 488 ms
104,832 KB
testcase_33 AC 1,012 ms
137,500 KB
testcase_34 AC 432 ms
97,792 KB
testcase_35 AC 912 ms
137,496 KB
testcase_36 AC 102 ms
76,672 KB
testcase_37 AC 151 ms
78,720 KB
testcase_38 AC 109 ms
77,568 KB
testcase_39 AC 147 ms
78,208 KB
testcase_40 AC 70 ms
66,176 KB
testcase_41 AC 1,018 ms
140,608 KB
testcase_42 AC 393 ms
97,024 KB
testcase_43 AC 584 ms
111,052 KB
testcase_44 AC 297 ms
89,984 KB
testcase_45 AC 576 ms
109,824 KB
testcase_46 AC 42 ms
53,120 KB
testcase_47 AC 42 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import math

INF = 1e15

n, m = map(int, input().split())
src, dst = map(int, input().split())
src -= 1
dst -= 1
points = [list(map(int, input().split())) for _ in range(n)]

g = [[] for _ in range(n)]
for _ in range(m):
  u, v = map(int, input().split())
  u -= 1
  v -= 1
  xu, yu = points[u]
  xv, yv = points[v]
  d = math.sqrt((xv - xu) ** 2 + (yv - yu) ** 2)
  g[u].append((v, d))
  g[v].append((u, d))

dist = [INF for _ in range(n)]
dist[src] = 0.0
hp = [(0.0, src)]
while len(hp) > 0:
  cd, cur = heapq.heappop(hp)
  if cd > dist[cur]:
    continue

  for nxt, cost in g[cur]:
    if dist[cur] + cost < dist[nxt]:
      dist[nxt] = dist[cur] + cost
      heapq.heappush(hp, (dist[nxt], nxt))

print(dist[dst])
0