結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tktk_snsntktk_snsn
提出日時 2020-05-29 22:03:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,802 ms / 2,000 ms
コード長 767 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 106,488 KB
最終ジャッジ日時 2024-11-06 04:46:41
合計ジャッジ時間 37,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,880 KB
testcase_02 AC 900 ms
58,240 KB
testcase_03 AC 1,389 ms
98,076 KB
testcase_04 AC 1,347 ms
96,772 KB
testcase_05 AC 1,158 ms
89,500 KB
testcase_06 AC 1,178 ms
89,508 KB
testcase_07 AC 316 ms
36,096 KB
testcase_08 AC 1,137 ms
106,488 KB
testcase_09 AC 121 ms
19,200 KB
testcase_10 AC 514 ms
53,376 KB
testcase_11 AC 362 ms
39,936 KB
testcase_12 AC 349 ms
31,360 KB
testcase_13 AC 1,130 ms
67,456 KB
testcase_14 AC 1,336 ms
76,288 KB
testcase_15 AC 1,513 ms
87,552 KB
testcase_16 AC 779 ms
48,768 KB
testcase_17 AC 1,669 ms
92,288 KB
testcase_18 AC 529 ms
38,528 KB
testcase_19 AC 1,505 ms
86,528 KB
testcase_20 AC 407 ms
32,512 KB
testcase_21 AC 703 ms
44,416 KB
testcase_22 AC 1,464 ms
81,920 KB
testcase_23 AC 44 ms
11,520 KB
testcase_24 AC 47 ms
12,032 KB
testcase_25 AC 315 ms
29,056 KB
testcase_26 AC 806 ms
52,508 KB
testcase_27 AC 832 ms
54,272 KB
testcase_28 AC 1,441 ms
81,152 KB
testcase_29 AC 186 ms
20,992 KB
testcase_30 AC 1,514 ms
86,340 KB
testcase_31 AC 1,010 ms
64,896 KB
testcase_32 AC 672 ms
47,216 KB
testcase_33 AC 1,518 ms
88,960 KB
testcase_34 AC 564 ms
40,064 KB
testcase_35 AC 1,553 ms
87,796 KB
testcase_36 AC 38 ms
11,392 KB
testcase_37 AC 43 ms
11,904 KB
testcase_38 AC 39 ms
11,520 KB
testcase_39 AC 43 ms
11,904 KB
testcase_40 AC 34 ms
11,136 KB
testcase_41 AC 1,802 ms
106,168 KB
testcase_42 AC 507 ms
40,192 KB
testcase_43 AC 965 ms
61,312 KB
testcase_44 AC 317 ms
29,312 KB
testcase_45 AC 900 ms
60,032 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
import math
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
S, T = map(int, input().split())
xy = tuple(tuple(map(int, input().split())) for _ in range(N))
edge = [[] for _ in range(N + 1)]
for _ in range(M):
    p, q = map(int, input().split())
    x1, y1 = xy[p - 1]
    x2, y2 = xy[q - 1]
    d = math.hypot(x1 - x2, y1 - y2)
    edge[p].append((q, d))
    edge[q].append((p, d))

inf = 10**18
dist = [inf] * (N + 1)
dist[S] = 0
que = [(0, S)]
while que:
    c, s = heapq.heappop(que)
    if dist[s] < c:
        continue
    cost = dist[s]
    for t, d in edge[s]:
        if dist[t] > cost + d:
            dist[t] = cost + d
            heapq.heappush(que, (cost+d, t))

print(dist[T])
0