結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー wolgnikwolgnik
提出日時 2020-05-29 21:55:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 991 ms / 2,000 ms
コード長 990 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 143,096 KB
最終ジャッジ日時 2024-11-06 04:12:20
合計ジャッジ時間 23,566 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,540 KB
testcase_01 AC 41 ms
54,328 KB
testcase_02 AC 459 ms
106,268 KB
testcase_03 AC 779 ms
142,376 KB
testcase_04 AC 746 ms
143,096 KB
testcase_05 AC 529 ms
142,220 KB
testcase_06 AC 539 ms
142,348 KB
testcase_07 AC 128 ms
90,968 KB
testcase_08 AC 290 ms
134,240 KB
testcase_09 AC 86 ms
78,564 KB
testcase_10 AC 174 ms
102,456 KB
testcase_11 AC 132 ms
90,336 KB
testcase_12 AC 311 ms
95,680 KB
testcase_13 AC 761 ms
121,492 KB
testcase_14 AC 776 ms
126,036 KB
testcase_15 AC 902 ms
133,036 KB
testcase_16 AC 547 ms
107,316 KB
testcase_17 AC 991 ms
139,500 KB
testcase_18 AC 429 ms
100,312 KB
testcase_19 AC 821 ms
133,420 KB
testcase_20 AC 315 ms
92,136 KB
testcase_21 AC 510 ms
107,040 KB
testcase_22 AC 839 ms
129,068 KB
testcase_23 AC 102 ms
77,832 KB
testcase_24 AC 107 ms
78,116 KB
testcase_25 AC 274 ms
93,724 KB
testcase_26 AC 518 ms
108,804 KB
testcase_27 AC 588 ms
110,272 KB
testcase_28 AC 890 ms
133,448 KB
testcase_29 AC 215 ms
85,780 KB
testcase_30 AC 910 ms
134,176 KB
testcase_31 AC 620 ms
117,060 KB
testcase_32 AC 450 ms
103,012 KB
testcase_33 AC 862 ms
132,628 KB
testcase_34 AC 454 ms
100,036 KB
testcase_35 AC 944 ms
136,340 KB
testcase_36 AC 103 ms
77,392 KB
testcase_37 AC 113 ms
77,860 KB
testcase_38 AC 97 ms
76,948 KB
testcase_39 AC 113 ms
77,896 KB
testcase_40 AC 70 ms
71,052 KB
testcase_41 AC 826 ms
134,172 KB
testcase_42 AC 289 ms
94,684 KB
testcase_43 AC 458 ms
106,972 KB
testcase_44 AC 221 ms
87,840 KB
testcase_45 AC 446 ms
106,400 KB
testcase_46 AC 40 ms
53,236 KB
testcase_47 AC 41 ms
54,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import sqrt
input = sys.stdin.readline
N, M = map(int, input().split())
X, Y = map(int, input().split())
e = [[] for _ in range(N + 1)]
ps = [(0, 0)]
for _ in range(N):
  p, q = map(int, input().split())
  ps.append((p, q))
for _ in range(M):
  p, q = map(int, input().split())
  e[p].append((q, sqrt((ps[p][0] - ps[q][0]) ** 2 + (ps[p][1] - ps[q][1]) ** 2)))
  e[q].append((p, sqrt((ps[p][0] - ps[q][0]) ** 2 + (ps[p][1] - ps[q][1]) ** 2)))
import heapq
hpush = heapq.heappush
hpop = heapq.heappop
class dijkstra:
  def __init__(self, n, e):
    self.e = e
    self.n = n
  def path(self, s):
    d = [float("inf")] * (self.n + 1)
    vis = [0] * (self.n + 1)
    d[s] = 0
    h = [(0, s)]
    while len(h):
      v0, v1 = hpop(h)
      if vis[v1]: continue
      vis[v1] = 1
      for p in self.e[v1]:
        d[p[0]] = min(d[p[0]], d[v1] + p[1])
        if vis[p[0]]: continue
        hpush(h, (d[p[0]], p[0]))
    return d
dij = dijkstra(N, e)
print(dij.path(X)[Y])
0