結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tanakkitanakki
提出日時 2020-05-29 22:39:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 827 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 117,792 KB
最終ジャッジ日時 2024-11-06 06:27:39
合計ジャッジ時間 20,577 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,644 KB
testcase_01 AC 40 ms
53,280 KB
testcase_02 AC 470 ms
96,468 KB
testcase_03 AC 736 ms
117,152 KB
testcase_04 AC 682 ms
115,592 KB
testcase_05 AC 454 ms
117,792 KB
testcase_06 AC 452 ms
117,700 KB
testcase_07 AC 171 ms
85,208 KB
testcase_08 AC 387 ms
113,532 KB
testcase_09 AC 124 ms
79,212 KB
testcase_10 AC 221 ms
92,060 KB
testcase_11 AC 188 ms
86,984 KB
testcase_12 AC 145 ms
79,132 KB
testcase_13 AC 618 ms
100,280 KB
testcase_14 AC 667 ms
107,044 KB
testcase_15 AC 796 ms
112,012 KB
testcase_16 AC 410 ms
90,496 KB
testcase_17 AC 813 ms
115,400 KB
testcase_18 AC 315 ms
85,340 KB
testcase_19 AC 770 ms
113,824 KB
testcase_20 AC 282 ms
85,176 KB
testcase_21 AC 351 ms
87,064 KB
testcase_22 AC 692 ms
109,192 KB
testcase_23 AC 71 ms
75,076 KB
testcase_24 AC 82 ms
77,196 KB
testcase_25 AC 138 ms
78,388 KB
testcase_26 AC 470 ms
95,828 KB
testcase_27 AC 445 ms
94,032 KB
testcase_28 AC 746 ms
106,952 KB
testcase_29 AC 190 ms
79,704 KB
testcase_30 AC 734 ms
112,752 KB
testcase_31 AC 526 ms
103,336 KB
testcase_32 AC 383 ms
93,224 KB
testcase_33 AC 764 ms
115,724 KB
testcase_34 AC 321 ms
87,744 KB
testcase_35 AC 769 ms
112,840 KB
testcase_36 AC 89 ms
77,100 KB
testcase_37 AC 132 ms
78,360 KB
testcase_38 AC 95 ms
77,084 KB
testcase_39 AC 131 ms
78,216 KB
testcase_40 AC 63 ms
68,024 KB
testcase_41 AC 827 ms
113,836 KB
testcase_42 AC 326 ms
87,916 KB
testcase_43 AC 460 ms
95,416 KB
testcase_44 AC 246 ms
83,896 KB
testcase_45 AC 461 ms
94,836 KB
testcase_46 AC 40 ms
53,632 KB
testcase_47 AC 39 ms
53,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n, m = map(int, input().split())
x, y = map(int, input().split())
pq = []
for _ in range(n):
    p, q = map(int, input().split())
    pq.append((p, q))
graph = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    graph[u-1].append(v-1)
    graph[v-1].append(u-1)
f = lambda a, b: ((a[0]-b[0])**2+(a[1]-b[1])**2)**0.5
INF = 10**9
heap = []
dist = [INF]*n
dist[x-1] = 0
heap = [(0, x-1)]
heapq.heapify(heap)
while heap:
    _, node = heapq.heappop(heap)
    for i in graph[node]:
        if dist[i] > dist[node] + f(pq[node], pq[i]):
            dist[i] = dist[node] + f(pq[node], pq[i])
            heapq.heappush(heap, (dist[i], i))
print(dist[y-1])
0