結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー nephrologistnephrologist
提出日時 2020-05-29 21:46:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 862 ms / 2,000 ms
コード長 979 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 148,844 KB
最終ジャッジ日時 2024-11-06 03:30:55
合計ジャッジ時間 19,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
53,396 KB
testcase_01 AC 46 ms
53,452 KB
testcase_02 AC 355 ms
109,596 KB
testcase_03 AC 654 ms
146,924 KB
testcase_04 AC 807 ms
148,844 KB
testcase_05 AC 502 ms
145,556 KB
testcase_06 AC 521 ms
145,424 KB
testcase_07 AC 125 ms
90,496 KB
testcase_08 AC 300 ms
141,872 KB
testcase_09 AC 86 ms
79,028 KB
testcase_10 AC 171 ms
103,292 KB
testcase_11 AC 144 ms
96,948 KB
testcase_12 AC 140 ms
90,300 KB
testcase_13 AC 603 ms
124,516 KB
testcase_14 AC 599 ms
129,756 KB
testcase_15 AC 747 ms
138,124 KB
testcase_16 AC 380 ms
108,272 KB
testcase_17 AC 862 ms
143,392 KB
testcase_18 AC 357 ms
100,656 KB
testcase_19 AC 636 ms
139,016 KB
testcase_20 AC 292 ms
94,208 KB
testcase_21 AC 432 ms
106,728 KB
testcase_22 AC 764 ms
134,556 KB
testcase_23 AC 88 ms
77,704 KB
testcase_24 AC 54 ms
66,628 KB
testcase_25 AC 136 ms
88,688 KB
testcase_26 AC 325 ms
107,592 KB
testcase_27 AC 379 ms
110,292 KB
testcase_28 AC 567 ms
132,384 KB
testcase_29 AC 176 ms
85,464 KB
testcase_30 AC 557 ms
135,504 KB
testcase_31 AC 582 ms
120,488 KB
testcase_32 AC 265 ms
102,748 KB
testcase_33 AC 778 ms
138,276 KB
testcase_34 AC 346 ms
101,432 KB
testcase_35 AC 502 ms
133,164 KB
testcase_36 AC 55 ms
66,184 KB
testcase_37 AC 72 ms
74,368 KB
testcase_38 AC 67 ms
70,440 KB
testcase_39 AC 63 ms
70,060 KB
testcase_40 AC 45 ms
56,456 KB
testcase_41 AC 831 ms
143,732 KB
testcase_42 AC 283 ms
97,296 KB
testcase_43 AC 384 ms
112,040 KB
testcase_44 AC 179 ms
89,720 KB
testcase_45 AC 468 ms
111,556 KB
testcase_46 AC 40 ms
53,212 KB
testcase_47 AC 40 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from heapq import heappush, heappop
import sys

input = sys.stdin.buffer.readline

n, m = map(int, input().split())
x, y = map(int, input().split())
x -= 1
y -= 1


def kyori(a, b, c, d):
    return sqrt((a - c) ** 2 + (b - d) ** 2)


XY = [list(map(int, input().split())) for _ in range(n)]
graph = [[] for _ in range(n)]
for _ in range(m):
    p, q = map(int, input().split())
    a, b = XY[p - 1]
    c, d = XY[q - 1]
    temp = kyori(a, b, c, d)
    graph[p - 1].append((temp, q - 1))
    graph[q - 1].append((temp, p - 1))


edgelist = [(0, x)]
dist = [10 ** 10] * n
used = [False] * n
while edgelist:
    nowd, nowedge = heappop(edgelist)
    if used[nowedge]:
        continue
    if nowedge == y:
        print(nowd)
        exit()
    used[nowedge] = True
    dist[nowedge] = nowd
    for delta, nextedge in graph[nowedge]:
        if used[nextedge]:
            continue
        heappush(edgelist, (nowd + delta, nextedge))

print("error")
exit()
0