結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー H3PO4H3PO4
提出日時 2021-10-07 10:32:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 957 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 138,928 KB
最終ジャッジ日時 2024-07-23 03:05:12
合計ジャッジ時間 23,816 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,436 KB
testcase_01 AC 40 ms
53,364 KB
testcase_02 AC 532 ms
108,572 KB
testcase_03 AC 662 ms
137,948 KB
testcase_04 AC 655 ms
136,208 KB
testcase_05 AC 449 ms
134,268 KB
testcase_06 AC 449 ms
133,756 KB
testcase_07 AC 145 ms
91,924 KB
testcase_08 AC 350 ms
137,736 KB
testcase_09 AC 100 ms
82,100 KB
testcase_10 AC 189 ms
100,796 KB
testcase_11 AC 150 ms
91,316 KB
testcase_12 AC 134 ms
85,540 KB
testcase_13 AC 698 ms
118,112 KB
testcase_14 AC 759 ms
122,768 KB
testcase_15 AC 881 ms
132,816 KB
testcase_16 AC 475 ms
103,512 KB
testcase_17 AC 951 ms
136,972 KB
testcase_18 AC 371 ms
95,508 KB
testcase_19 AC 856 ms
133,636 KB
testcase_20 AC 287 ms
91,592 KB
testcase_21 AC 417 ms
100,584 KB
testcase_22 AC 843 ms
127,672 KB
testcase_23 AC 62 ms
69,632 KB
testcase_24 AC 66 ms
72,692 KB
testcase_25 AC 135 ms
85,356 KB
testcase_26 AC 527 ms
107,892 KB
testcase_27 AC 575 ms
106,916 KB
testcase_28 AC 942 ms
126,692 KB
testcase_29 AC 187 ms
83,584 KB
testcase_30 AC 881 ms
131,820 KB
testcase_31 AC 595 ms
116,604 KB
testcase_32 AC 440 ms
102,940 KB
testcase_33 AC 957 ms
132,464 KB
testcase_34 AC 387 ms
96,304 KB
testcase_35 AC 855 ms
133,048 KB
testcase_36 AC 70 ms
72,192 KB
testcase_37 AC 107 ms
77,448 KB
testcase_38 AC 76 ms
74,144 KB
testcase_39 AC 101 ms
77,744 KB
testcase_40 AC 54 ms
64,836 KB
testcase_41 AC 957 ms
138,928 KB
testcase_42 AC 336 ms
96,204 KB
testcase_43 AC 539 ms
110,044 KB
testcase_44 AC 248 ms
89,312 KB
testcase_45 AC 521 ms
108,920 KB
testcase_46 AC 41 ms
53,760 KB
testcase_47 AC 40 ms
53,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

from heapq import heappush, heappop

input = sys.stdin.buffer.readline

N, M = map(int, input().split())
X, Y = (int(x) - 1 for x in input().split())
INF = 10 ** 10


def dijkstra(N, G, s):
    dist = [INF] * N
    que = [(0, s)]
    dist[s] = 0
    while que:
        c, v = heappop(que)
        if dist[v] < c:
            continue
        for t, cost in G[v]:
            if dist[v] + cost < dist[t]:
                dist[t] = dist[v] + cost
                heappush(que, (dist[t], t))
    return dist


points = [tuple(map(int, input().split())) for _ in range(N)]


def euc_dist(p, q):
    px, py = points[p]
    qx, qy = points[q]
    return ((px - qx) ** 2 + (py - qy) ** 2) ** .5


G = [[] for _ in range(N)]
for _ in range(M):
    p, q = (int(x) - 1 for x in input().split())
    d = euc_dist(p, q)
    G[p].append((q, d))
    G[q].append((p, d))

print(dijkstra(N, G, X)[Y])
0