結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー wattaiheiwattaihei
提出日時 2020-05-29 21:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 938 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 142,904 KB
最終ジャッジ日時 2024-11-06 03:16:16
合計ジャッジ時間 21,113 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,488 KB
testcase_01 AC 39 ms
54,268 KB
testcase_02 AC 544 ms
111,144 KB
testcase_03 AC 641 ms
142,092 KB
testcase_04 AC 611 ms
142,392 KB
testcase_05 AC 424 ms
138,160 KB
testcase_06 AC 427 ms
138,164 KB
testcase_07 AC 140 ms
91,780 KB
testcase_08 AC 346 ms
141,736 KB
testcase_09 AC 99 ms
82,172 KB
testcase_10 AC 191 ms
104,768 KB
testcase_11 AC 155 ms
96,272 KB
testcase_12 AC 130 ms
87,480 KB
testcase_13 AC 653 ms
119,500 KB
testcase_14 AC 718 ms
126,920 KB
testcase_15 AC 822 ms
135,368 KB
testcase_16 AC 435 ms
104,768 KB
testcase_17 AC 868 ms
140,268 KB
testcase_18 AC 317 ms
96,452 KB
testcase_19 AC 801 ms
137,500 KB
testcase_20 AC 269 ms
92,328 KB
testcase_21 AC 356 ms
100,364 KB
testcase_22 AC 751 ms
130,356 KB
testcase_23 AC 56 ms
67,520 KB
testcase_24 AC 62 ms
70,132 KB
testcase_25 AC 130 ms
87,112 KB
testcase_26 AC 459 ms
109,704 KB
testcase_27 AC 503 ms
108,932 KB
testcase_28 AC 798 ms
129,880 KB
testcase_29 AC 168 ms
83,420 KB
testcase_30 AC 795 ms
135,576 KB
testcase_31 AC 549 ms
118,644 KB
testcase_32 AC 401 ms
104,532 KB
testcase_33 AC 938 ms
136,740 KB
testcase_34 AC 389 ms
97,516 KB
testcase_35 AC 813 ms
135,848 KB
testcase_36 AC 66 ms
70,752 KB
testcase_37 AC 102 ms
77,500 KB
testcase_38 AC 71 ms
72,160 KB
testcase_39 AC 101 ms
77,692 KB
testcase_40 AC 51 ms
62,672 KB
testcase_41 AC 911 ms
142,904 KB
testcase_42 AC 317 ms
97,512 KB
testcase_43 AC 515 ms
111,584 KB
testcase_44 AC 255 ms
90,040 KB
testcase_45 AC 530 ms
111,044 KB
testcase_46 AC 40 ms
54,620 KB
testcase_47 AC 41 ms
54,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq as hp
import sys
input = sys.stdin.readline

INF = 10**18

N, M = map(int, input().split())
X, Y = map(int, input().split())
X -= 1; Y -= 1
XY = [list(map(int, input().split())) for _ in range(N)]
graph = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1; b -= 1
    x1, y1 = XY[a]; x2, y2 = XY[b]
    d = ((x1-x2)**2 + (y1-y2)**2)**(0.5)
    graph[a].append((d, b))
    graph[b].append((d, a))



D = [INF for _ in range(N)] # 頂点iへの最短距離がD[i]
D[X] = 0 
q = [] # しまっていく優先度付きキュー
hp.heappush(q, (0, X))

while q:
    nd, np = hp.heappop(q) # 一番距離が近いものを取ってくる
    if D[np] < nd: # 追加した後の残骸は見ない
        continue
    for d, p in graph[np]:
        if D[p] > D[np] + d: # 隣接するやつの中で今よりも近くなれるなら更新
            D[p] = D[np] + d
            hp.heappush(q, (D[p], p))

print(D[Y])
0