結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー AEnAEn
提出日時 2022-05-21 16:15:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 972 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 146,516 KB
最終ジャッジ日時 2024-09-20 11:53:26
合計ジャッジ時間 24,876 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
52,736 KB
testcase_01 AC 41 ms
52,736 KB
testcase_02 AC 552 ms
111,996 KB
testcase_03 AC 774 ms
144,996 KB
testcase_04 AC 747 ms
144,476 KB
testcase_05 AC 578 ms
146,312 KB
testcase_06 AC 580 ms
146,188 KB
testcase_07 AC 208 ms
95,488 KB
testcase_08 AC 458 ms
145,024 KB
testcase_09 AC 139 ms
80,512 KB
testcase_10 AC 272 ms
107,136 KB
testcase_11 AC 233 ms
94,464 KB
testcase_12 AC 177 ms
88,832 KB
testcase_13 AC 665 ms
121,724 KB
testcase_14 AC 770 ms
129,320 KB
testcase_15 AC 864 ms
138,628 KB
testcase_16 AC 447 ms
106,240 KB
testcase_17 AC 899 ms
142,864 KB
testcase_18 AC 355 ms
97,448 KB
testcase_19 AC 830 ms
139,516 KB
testcase_20 AC 295 ms
93,760 KB
testcase_21 AC 394 ms
103,908 KB
testcase_22 AC 767 ms
133,048 KB
testcase_23 AC 82 ms
75,008 KB
testcase_24 AC 91 ms
77,312 KB
testcase_25 AC 166 ms
88,320 KB
testcase_26 AC 500 ms
111,228 KB
testcase_27 AC 496 ms
110,876 KB
testcase_28 AC 786 ms
134,000 KB
testcase_29 AC 201 ms
84,200 KB
testcase_30 AC 778 ms
138,044 KB
testcase_31 AC 579 ms
121,388 KB
testcase_32 AC 434 ms
105,396 KB
testcase_33 AC 844 ms
139,120 KB
testcase_34 AC 375 ms
99,584 KB
testcase_35 AC 827 ms
140,208 KB
testcase_36 AC 95 ms
77,184 KB
testcase_37 AC 142 ms
78,660 KB
testcase_38 AC 105 ms
77,388 KB
testcase_39 AC 144 ms
78,592 KB
testcase_40 AC 65 ms
67,840 KB
testcase_41 AC 972 ms
146,516 KB
testcase_42 AC 369 ms
98,628 KB
testcase_43 AC 558 ms
112,904 KB
testcase_44 AC 297 ms
91,236 KB
testcase_45 AC 538 ms
112,512 KB
testcase_46 AC 39 ms
52,864 KB
testcase_47 AC 39 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import math
INF = float('inf')

N, M = map(int, input().split())
X, Y = map(int, input().split())
p = [list(map(int, input().split())) for _ in range(N)]
adj = [[] for _ in range(N)]
for i in range(M):
    P, Q = map(int, input().split())
    x1, y1 = p[P-1]
    x2, y2 = p[Q-1]
    adj[P-1].append((Q-1, math.sqrt((x1-x2)**2+(y1-y2)**2)))
    adj[Q-1].append((P-1, math.sqrt((x1-x2)**2+(y1-y2)**2)))

def dijkstra(s, n):
    dist = [INF] * n
    hq = [(0, s)]
    dist[s] = 0
    seen = [False] * n
    while hq:
        v = heappop(hq)[1]
        seen[v] = True
        for to, cost in adj[v]:
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist
d = dijkstra(X-1, N)
print(d[Y-1])
0