結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-05-29 22:50:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 815 ms / 2,000 ms
コード長 803 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 136,864 KB
最終ジャッジ日時 2024-11-06 06:59:18
合計ジャッジ時間 19,084 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,156 KB
testcase_01 AC 40 ms
53,664 KB
testcase_02 AC 449 ms
104,880 KB
testcase_03 AC 595 ms
136,864 KB
testcase_04 AC 593 ms
134,952 KB
testcase_05 AC 398 ms
134,508 KB
testcase_06 AC 393 ms
134,400 KB
testcase_07 AC 126 ms
90,120 KB
testcase_08 AC 302 ms
132,592 KB
testcase_09 AC 85 ms
78,388 KB
testcase_10 AC 176 ms
101,236 KB
testcase_11 AC 134 ms
89,612 KB
testcase_12 AC 132 ms
88,464 KB
testcase_13 AC 580 ms
115,176 KB
testcase_14 AC 636 ms
121,132 KB
testcase_15 AC 744 ms
129,880 KB
testcase_16 AC 398 ms
102,340 KB
testcase_17 AC 785 ms
132,208 KB
testcase_18 AC 285 ms
95,348 KB
testcase_19 AC 718 ms
129,784 KB
testcase_20 AC 248 ms
90,204 KB
testcase_21 AC 325 ms
101,024 KB
testcase_22 AC 700 ms
125,468 KB
testcase_23 AC 55 ms
68,560 KB
testcase_24 AC 61 ms
69,772 KB
testcase_25 AC 125 ms
88,764 KB
testcase_26 AC 411 ms
106,112 KB
testcase_27 AC 447 ms
105,400 KB
testcase_28 AC 699 ms
125,812 KB
testcase_29 AC 159 ms
83,748 KB
testcase_30 AC 734 ms
128,324 KB
testcase_31 AC 486 ms
113,960 KB
testcase_32 AC 364 ms
101,168 KB
testcase_33 AC 815 ms
129,816 KB
testcase_34 AC 331 ms
96,212 KB
testcase_35 AC 714 ms
130,056 KB
testcase_36 AC 69 ms
72,428 KB
testcase_37 AC 100 ms
77,556 KB
testcase_38 AC 70 ms
74,072 KB
testcase_39 AC 99 ms
77,712 KB
testcase_40 AC 49 ms
63,204 KB
testcase_41 AC 776 ms
133,156 KB
testcase_42 AC 283 ms
93,892 KB
testcase_43 AC 438 ms
105,900 KB
testcase_44 AC 207 ms
88,160 KB
testcase_45 AC 421 ms
105,452 KB
testcase_46 AC 38 ms
53,452 KB
testcase_47 AC 39 ms
53,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
from heapq import *
def dijkstra_heapq(s, cost):
    d = [float("inf")] * N
    h = [(0, s)]
    d[s] = 0
    while h:
        vc, v = heappop(h)
#        print(h)
        if vc > d[v]:
            continue
        for j, c in cost[v]:
            if vc+c<d[j]:
                d[j] = vc+c
                heappush(h, (vc+c, j))
    return d

N, M = map(int,input().split())
X, Y = map(int,input().split())
V = []
for _ in range(N):
    p, q = map(int, input().split())
    V.append((p, q))

cost = [[] for _ in range(N)]
for _ in range(M):
    A, B = map(int, input().split())
    a, b = V[A-1]
    c, d = V[B-1]
    cost[A-1].append((B-1, ((a-c)**2+(b-d)**2)**0.5))
    cost[B-1].append((A-1, ((a-c)**2+(b-d)**2)**0.5))

d = dijkstra_heapq(X-1,cost)
print(d[Y-1])

0