結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-06 00:40:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,026 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 140,680 KB
最終ジャッジ日時 2024-12-17 20:47:50
合計ジャッジ時間 25,657 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,248 KB
testcase_01 AC 38 ms
53,860 KB
testcase_02 AC 483 ms
106,860 KB
testcase_03 AC 800 ms
140,680 KB
testcase_04 AC 765 ms
139,144 KB
testcase_05 AC 555 ms
135,896 KB
testcase_06 AC 549 ms
136,020 KB
testcase_07 AC 165 ms
87,992 KB
testcase_08 AC 384 ms
132,916 KB
testcase_09 AC 112 ms
80,016 KB
testcase_10 AC 216 ms
100,892 KB
testcase_11 AC 173 ms
92,828 KB
testcase_12 AC 311 ms
95,684 KB
testcase_13 AC 764 ms
120,312 KB
testcase_14 AC 827 ms
125,316 KB
testcase_15 AC 925 ms
132,272 KB
testcase_16 AC 578 ms
107,016 KB
testcase_17 AC 1,026 ms
137,348 KB
testcase_18 AC 438 ms
99,448 KB
testcase_19 AC 882 ms
132,424 KB
testcase_20 AC 310 ms
92,488 KB
testcase_21 AC 543 ms
107,296 KB
testcase_22 AC 846 ms
128,324 KB
testcase_23 AC 110 ms
77,784 KB
testcase_24 AC 109 ms
78,124 KB
testcase_25 AC 286 ms
93,560 KB
testcase_26 AC 513 ms
107,760 KB
testcase_27 AC 600 ms
109,804 KB
testcase_28 AC 943 ms
132,860 KB
testcase_29 AC 220 ms
85,668 KB
testcase_30 AC 896 ms
133,044 KB
testcase_31 AC 590 ms
115,316 KB
testcase_32 AC 428 ms
102,048 KB
testcase_33 AC 907 ms
132,492 KB
testcase_34 AC 439 ms
99,864 KB
testcase_35 AC 945 ms
135,936 KB
testcase_36 AC 101 ms
77,368 KB
testcase_37 AC 127 ms
78,424 KB
testcase_38 AC 105 ms
77,144 KB
testcase_39 AC 131 ms
78,056 KB
testcase_40 AC 68 ms
70,372 KB
testcase_41 AC 878 ms
135,960 KB
testcase_42 AC 321 ms
95,080 KB
testcase_43 AC 502 ms
106,896 KB
testcase_44 AC 236 ms
88,000 KB
testcase_45 AC 474 ms
105,544 KB
testcase_46 AC 39 ms
54,208 KB
testcase_47 AC 39 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

pq = []
for i in range(n):
    p, q = map(int, input().split())
    pq.append((p, q))

import heapq
INF = 10**18
def dijkstra_heap(s, edge, n):
    d = [INF] * n
    used = [True] * n #True: not used
    d[s] = 0
    used[s] = False
    edgelist = []
    for e in edge[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 edge[v]:
            if used[e[1]]:
                heapq.heappush(edgelist,(e[0]+d[v],e[1]))
    return d

edge = [[] for _ in range(n)]
import math
for i in range(m):
    P, Q = map(int, input().split())
    P, Q = P-1, Q-1
    C = math.sqrt((pq[P][0]-pq[Q][0])**2+(pq[P][1]-pq[Q][1])**2)
    edge[P].append((C, Q))
    edge[Q].append((C, P))
d = dijkstra_heap(x, edge, n)
print(d[y])
0