結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー RiburaRibura
提出日時 2020-05-29 22:21:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,504 ms / 2,000 ms
コード長 1,271 bytes
コンパイル時間 447 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 166,304 KB
最終ジャッジ日時 2024-11-06 05:33:58
合計ジャッジ時間 31,301 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,256 KB
testcase_01 AC 41 ms
54,356 KB
testcase_02 AC 590 ms
119,636 KB
testcase_03 AC 1,224 ms
164,364 KB
testcase_04 AC 1,176 ms
165,084 KB
testcase_05 AC 812 ms
166,208 KB
testcase_06 AC 826 ms
166,304 KB
testcase_07 AC 119 ms
91,260 KB
testcase_08 AC 300 ms
154,152 KB
testcase_09 AC 84 ms
79,320 KB
testcase_10 AC 171 ms
111,220 KB
testcase_11 AC 141 ms
100,332 KB
testcase_12 AC 461 ms
104,596 KB
testcase_13 AC 1,043 ms
139,328 KB
testcase_14 AC 1,110 ms
144,840 KB
testcase_15 AC 1,326 ms
155,640 KB
testcase_16 AC 777 ms
120,072 KB
testcase_17 AC 1,429 ms
161,848 KB
testcase_18 AC 589 ms
109,796 KB
testcase_19 AC 1,179 ms
154,764 KB
testcase_20 AC 372 ms
99,244 KB
testcase_21 AC 818 ms
121,328 KB
testcase_22 AC 1,221 ms
150,708 KB
testcase_23 AC 97 ms
78,260 KB
testcase_24 AC 98 ms
78,240 KB
testcase_25 AC 454 ms
101,948 KB
testcase_26 AC 754 ms
121,848 KB
testcase_27 AC 910 ms
123,964 KB
testcase_28 AC 1,504 ms
157,664 KB
testcase_29 AC 251 ms
89,668 KB
testcase_30 AC 1,336 ms
157,484 KB
testcase_31 AC 863 ms
132,156 KB
testcase_32 AC 552 ms
113,048 KB
testcase_33 AC 1,298 ms
153,280 KB
testcase_34 AC 576 ms
110,388 KB
testcase_35 AC 1,331 ms
159,440 KB
testcase_36 AC 95 ms
77,824 KB
testcase_37 AC 101 ms
78,052 KB
testcase_38 AC 95 ms
77,516 KB
testcase_39 AC 107 ms
77,984 KB
testcase_40 AC 60 ms
67,048 KB
testcase_41 AC 1,006 ms
155,372 KB
testcase_42 AC 334 ms
101,676 KB
testcase_43 AC 576 ms
118,200 KB
testcase_44 AC 252 ms
92,592 KB
testcase_45 AC 552 ms
116,812 KB
testcase_46 AC 40 ms
53,388 KB
testcase_47 AC 40 ms
54,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)

from math import sqrt


def dijkstra_heap(s):
    import heapq
    # 始点sから各頂点への最短距離
    d = [float("inf")] * n
    used = [True] * n  # True:未確定
    d[s] = 0
    used[s] = False
    edgelist = []
    for e in graph[s]:
        e.append(s)
        heapq.heappush(edgelist, e)
    while len(edgelist):
        minedge = heapq.heappop(edgelist)
        # まだ使われてない頂点の中から最小の距離のものを探す
        if not used[minedge[1]]:
            continue
        v = minedge[1]
        d[v] = minedge[0]
        used[v] = False
        for e in graph[v]:
            if used[e[1]]:
                heapq.heappush(edgelist, [e[0] + d[v], e[1]])
    return d


n, m = map(int, readline().split())
x, y = map(int, readline().split())
pq = [list(map(int, readline().split())) for _ in range(n)]
graph = [[] for _ in range(n)]
for i in range(m):
    p, q = map(int, readline().split())
    p -= 1
    q -= 1
    v = sqrt((pq[p][0] - pq[q][0]) ** 2 + (pq[p][1] - pq[q][1]) ** 2)
    graph[p].append([v, q])
    graph[q].append([v, p])
print(dijkstra_heap(x - 1)[y - 1])
0