結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー O2MTO2MT
提出日時 2020-08-31 14:22:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,007 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 143,032 KB
最終ジャッジ日時 2024-11-15 22:40:56
合計ジャッジ時間 23,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,120 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 575 ms
109,868 KB
testcase_03 AC 753 ms
143,032 KB
testcase_04 AC 733 ms
142,268 KB
testcase_05 AC 543 ms
138,536 KB
testcase_06 AC 535 ms
138,956 KB
testcase_07 AC 195 ms
93,440 KB
testcase_08 AC 455 ms
140,544 KB
testcase_09 AC 134 ms
80,768 KB
testcase_10 AC 257 ms
105,088 KB
testcase_11 AC 208 ms
95,352 KB
testcase_12 AC 178 ms
87,040 KB
testcase_13 AC 714 ms
119,000 KB
testcase_14 AC 783 ms
125,192 KB
testcase_15 AC 903 ms
136,012 KB
testcase_16 AC 500 ms
104,056 KB
testcase_17 AC 954 ms
140,368 KB
testcase_18 AC 381 ms
96,128 KB
testcase_19 AC 883 ms
137,224 KB
testcase_20 AC 317 ms
93,032 KB
testcase_21 AC 412 ms
100,508 KB
testcase_22 AC 851 ms
130,224 KB
testcase_23 AC 75 ms
74,496 KB
testcase_24 AC 86 ms
77,440 KB
testcase_25 AC 169 ms
86,964 KB
testcase_26 AC 514 ms
109,128 KB
testcase_27 AC 563 ms
108,440 KB
testcase_28 AC 893 ms
129,664 KB
testcase_29 AC 217 ms
84,352 KB
testcase_30 AC 894 ms
134,452 KB
testcase_31 AC 632 ms
118,444 KB
testcase_32 AC 462 ms
104,552 KB
testcase_33 AC 970 ms
135,748 KB
testcase_34 AC 400 ms
97,452 KB
testcase_35 AC 890 ms
137,332 KB
testcase_36 AC 93 ms
77,184 KB
testcase_37 AC 144 ms
78,180 KB
testcase_38 AC 101 ms
77,320 KB
testcase_39 AC 134 ms
78,080 KB
testcase_40 AC 66 ms
66,048 KB
testcase_41 AC 1,007 ms
141,312 KB
testcase_42 AC 380 ms
97,576 KB
testcase_43 AC 577 ms
110,976 KB
testcase_44 AC 284 ms
89,856 KB
testcase_45 AC 553 ms
109,772 KB
testcase_46 AC 41 ms
53,120 KB
testcase_47 AC 41 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
import heapq

def dijkstra(s, h, 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, Y, l)

print(ans[Y])
0