結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー O2MTO2MT
提出日時 2020-08-31 14:45:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 2,000 ms
コード長 1,002 bytes
コンパイル時間 1,030 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 142,904 KB
最終ジャッジ日時 2024-11-15 23:18:28
合計ジャッジ時間 23,542 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,864 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 635 ms
109,360 KB
testcase_03 AC 710 ms
142,904 KB
testcase_04 AC 683 ms
142,648 KB
testcase_05 AC 504 ms
138,412 KB
testcase_06 AC 503 ms
139,176 KB
testcase_07 AC 182 ms
93,440 KB
testcase_08 AC 421 ms
140,684 KB
testcase_09 AC 120 ms
81,260 KB
testcase_10 AC 238 ms
105,216 KB
testcase_11 AC 191 ms
94,860 KB
testcase_12 AC 167 ms
87,040 KB
testcase_13 AC 683 ms
118,628 KB
testcase_14 AC 743 ms
125,700 KB
testcase_15 AC 839 ms
135,696 KB
testcase_16 AC 468 ms
104,444 KB
testcase_17 AC 879 ms
140,244 KB
testcase_18 AC 342 ms
96,088 KB
testcase_19 AC 833 ms
137,484 KB
testcase_20 AC 302 ms
92,672 KB
testcase_21 AC 391 ms
101,060 KB
testcase_22 AC 839 ms
130,236 KB
testcase_23 AC 72 ms
73,856 KB
testcase_24 AC 82 ms
77,108 KB
testcase_25 AC 160 ms
86,840 KB
testcase_26 AC 484 ms
109,016 KB
testcase_27 AC 525 ms
108,456 KB
testcase_28 AC 843 ms
130,160 KB
testcase_29 AC 204 ms
84,236 KB
testcase_30 AC 848 ms
134,616 KB
testcase_31 AC 608 ms
118,076 KB
testcase_32 AC 460 ms
104,420 KB
testcase_33 AC 937 ms
135,640 KB
testcase_34 AC 373 ms
97,540 KB
testcase_35 AC 838 ms
137,332 KB
testcase_36 AC 88 ms
77,044 KB
testcase_37 AC 129 ms
78,472 KB
testcase_38 AC 95 ms
77,740 KB
testcase_39 AC 128 ms
77,812 KB
testcase_40 AC 61 ms
66,560 KB
testcase_41 AC 974 ms
141,092 KB
testcase_42 AC 360 ms
97,536 KB
testcase_43 AC 555 ms
110,848 KB
testcase_44 AC 323 ms
90,064 KB
testcase_45 AC 539 ms
110,040 KB
testcase_46 AC 41 ms
52,992 KB
testcase_47 AC 39 ms
52,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
import heapq

def dijkstra(s, graph):
    n = len(graph)-1
    dist = [float("inf") for i in range(n+1)]
    dist[s] = 0
    pq = []
    heapq.heapify(pq)
    heapq.heappush(pq, (0, s))
    while pq:
        mini_dis, node = heapq.heappop(pq)
        if dist[node] < mini_dis:
            continue
        for w, point in graph[node]:
            if dist[point] < w:
                continue
            newlen = dist[node]+w
            if newlen < dist[point]:
                heapq.heappush(pq, (newlen, point))
                dist[point] = newlen
    return dist

N,M = map(int,input().split())
X,Y = map(int,input().split())
l = [[] for _ in range(N+1)] 
d =  [[] for _ in range(N+1)] 
for i in range(1,N+1):
  a,b = map(int,input().split())
  d[i].append(a)
  d[i].append(b)

for _ in range(M):
  a,b = map(int,input().split())
  dist = sqrt((d[a][0]-d[b][0])**2 + (d[a][1]-d[b][1])**2)
  l[a].append((dist,b))
  l[b].append((dist,a))
  
ans = dijkstra(X, l)

print(ans[Y])
0