結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー 👑 rin204rin204
提出日時 2022-04-17 17:24:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 945 ms / 2,000 ms
コード長 740 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 124,752 KB
最終ジャッジ日時 2024-06-07 23:49:56
合計ジャッジ時間 21,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,864 KB
testcase_01 AC 37 ms
52,864 KB
testcase_02 AC 463 ms
101,672 KB
testcase_03 AC 616 ms
124,288 KB
testcase_04 AC 603 ms
123,224 KB
testcase_05 AC 453 ms
124,120 KB
testcase_06 AC 432 ms
124,752 KB
testcase_07 AC 189 ms
88,224 KB
testcase_08 AC 381 ms
120,528 KB
testcase_09 AC 126 ms
79,712 KB
testcase_10 AC 224 ms
96,104 KB
testcase_11 AC 182 ms
89,308 KB
testcase_12 AC 142 ms
79,104 KB
testcase_13 AC 509 ms
104,320 KB
testcase_14 AC 663 ms
111,520 KB
testcase_15 AC 865 ms
118,100 KB
testcase_16 AC 468 ms
92,484 KB
testcase_17 AC 945 ms
121,308 KB
testcase_18 AC 315 ms
87,508 KB
testcase_19 AC 699 ms
120,924 KB
testcase_20 AC 262 ms
88,348 KB
testcase_21 AC 307 ms
88,364 KB
testcase_22 AC 671 ms
114,748 KB
testcase_23 AC 74 ms
73,472 KB
testcase_24 AC 86 ms
77,032 KB
testcase_25 AC 135 ms
78,536 KB
testcase_26 AC 404 ms
98,776 KB
testcase_27 AC 419 ms
97,040 KB
testcase_28 AC 631 ms
112,376 KB
testcase_29 AC 177 ms
79,784 KB
testcase_30 AC 715 ms
118,912 KB
testcase_31 AC 509 ms
108,444 KB
testcase_32 AC 374 ms
96,964 KB
testcase_33 AC 772 ms
121,380 KB
testcase_34 AC 302 ms
88,224 KB
testcase_35 AC 698 ms
119,164 KB
testcase_36 AC 88 ms
77,056 KB
testcase_37 AC 132 ms
78,220 KB
testcase_38 AC 98 ms
76,948 KB
testcase_39 AC 130 ms
78,080 KB
testcase_40 AC 63 ms
67,072 KB
testcase_41 AC 817 ms
121,380 KB
testcase_42 AC 308 ms
90,924 KB
testcase_43 AC 461 ms
101,400 KB
testcase_44 AC 232 ms
86,072 KB
testcase_45 AC 450 ms
100,352 KB
testcase_46 AC 41 ms
52,992 KB
testcase_47 AC 40 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, m = map(int, input().split())
x, y = map(int, input().split())
x -= 1
y -= 1
point = [list(map(int, input().split())) for _ in range(n)]
edges = [[] for _ in range(n)]
for _ in range(m):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edges[a].append(b)
    edges[b].append(a)

def f(i, j):
    dx = point[j][0] - point[i][0]
    dy = point[j][1] - point[i][1]
    return (dx * dx + dy * dy) ** 0.5

inf = 1e20
dist = [inf] * n
dist[x] = 0.0
hq = [(0.0, x)]
while hq:
    d, pos = heappop(hq)
    if dist[pos] < d:
        continue
    for npos in edges[pos]:
        c = f(pos, npos)
        if dist[npos] > d + c:
            dist[npos] = d + c
            heappush(hq, (d + c, npos))
print(dist[y])
0