結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-06 00:40:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,061 ms / 2,000 ms
コード長 989 bytes
コンパイル時間 2,090 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 140,460 KB
最終ジャッジ日時 2024-05-10 01:34:25
合計ジャッジ時間 27,542 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,736 KB
testcase_01 AC 38 ms
53,504 KB
testcase_02 AC 511 ms
106,728 KB
testcase_03 AC 861 ms
140,460 KB
testcase_04 AC 778 ms
139,528 KB
testcase_05 AC 510 ms
135,892 KB
testcase_06 AC 525 ms
135,896 KB
testcase_07 AC 154 ms
87,836 KB
testcase_08 AC 412 ms
132,784 KB
testcase_09 AC 127 ms
79,808 KB
testcase_10 AC 235 ms
100,544 KB
testcase_11 AC 190 ms
92,936 KB
testcase_12 AC 336 ms
95,488 KB
testcase_13 AC 827 ms
120,068 KB
testcase_14 AC 866 ms
125,184 KB
testcase_15 AC 999 ms
132,860 KB
testcase_16 AC 622 ms
107,148 KB
testcase_17 AC 1,061 ms
137,084 KB
testcase_18 AC 475 ms
99,576 KB
testcase_19 AC 937 ms
132,820 KB
testcase_20 AC 336 ms
92,612 KB
testcase_21 AC 585 ms
107,864 KB
testcase_22 AC 918 ms
128,576 KB
testcase_23 AC 109 ms
77,924 KB
testcase_24 AC 114 ms
78,848 KB
testcase_25 AC 307 ms
93,532 KB
testcase_26 AC 554 ms
107,980 KB
testcase_27 AC 625 ms
109,524 KB
testcase_28 AC 1,008 ms
132,596 KB
testcase_29 AC 233 ms
85,952 KB
testcase_30 AC 945 ms
133,140 KB
testcase_31 AC 648 ms
114,940 KB
testcase_32 AC 468 ms
102,064 KB
testcase_33 AC 960 ms
132,376 KB
testcase_34 AC 467 ms
99,960 KB
testcase_35 AC 971 ms
136,072 KB
testcase_36 AC 105 ms
76,896 KB
testcase_37 AC 132 ms
78,464 KB
testcase_38 AC 105 ms
77,184 KB
testcase_39 AC 131 ms
78,672 KB
testcase_40 AC 69 ms
70,248 KB
testcase_41 AC 923 ms
136,272 KB
testcase_42 AC 337 ms
95,220 KB
testcase_43 AC 518 ms
107,156 KB
testcase_44 AC 254 ms
88,032 KB
testcase_45 AC 505 ms
106,052 KB
testcase_46 AC 39 ms
53,268 KB
testcase_47 AC 38 ms
53,248 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