結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー lloyzlloyz
提出日時 2022-09-28 00:34:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 903 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 160,124 KB
最終ジャッジ日時 2024-06-02 01:21:27
合計ジャッジ時間 21,707 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,260 KB
testcase_01 AC 40 ms
55,028 KB
testcase_02 AC 470 ms
114,984 KB
testcase_03 AC 608 ms
153,360 KB
testcase_04 AC 750 ms
153,220 KB
testcase_05 AC 525 ms
151,116 KB
testcase_06 AC 529 ms
151,256 KB
testcase_07 AC 194 ms
99,172 KB
testcase_08 AC 446 ms
156,556 KB
testcase_09 AC 126 ms
84,604 KB
testcase_10 AC 255 ms
111,488 KB
testcase_11 AC 207 ms
101,020 KB
testcase_12 AC 144 ms
87,280 KB
testcase_13 AC 557 ms
127,084 KB
testcase_14 AC 569 ms
133,292 KB
testcase_15 AC 743 ms
147,416 KB
testcase_16 AC 369 ms
106,472 KB
testcase_17 AC 860 ms
152,196 KB
testcase_18 AC 330 ms
97,852 KB
testcase_19 AC 694 ms
146,800 KB
testcase_20 AC 284 ms
95,224 KB
testcase_21 AC 379 ms
102,712 KB
testcase_22 AC 698 ms
139,636 KB
testcase_23 AC 74 ms
77,372 KB
testcase_24 AC 79 ms
77,592 KB
testcase_25 AC 133 ms
87,032 KB
testcase_26 AC 373 ms
112,716 KB
testcase_27 AC 386 ms
114,576 KB
testcase_28 AC 575 ms
136,264 KB
testcase_29 AC 186 ms
84,424 KB
testcase_30 AC 593 ms
143,820 KB
testcase_31 AC 549 ms
126,440 KB
testcase_32 AC 305 ms
107,228 KB
testcase_33 AC 774 ms
149,220 KB
testcase_34 AC 327 ms
100,276 KB
testcase_35 AC 589 ms
145,540 KB
testcase_36 AC 66 ms
73,976 KB
testcase_37 AC 99 ms
78,308 KB
testcase_38 AC 81 ms
77,336 KB
testcase_39 AC 97 ms
77,788 KB
testcase_40 AC 55 ms
65,636 KB
testcase_41 AC 903 ms
160,124 KB
testcase_42 AC 321 ms
101,768 KB
testcase_43 AC 447 ms
117,968 KB
testcase_44 AC 213 ms
92,688 KB
testcase_45 AC 520 ms
117,468 KB
testcase_46 AC 40 ms
55,440 KB
testcase_47 AC 38 ms
55,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
from math import sqrt
from heapq import heapify, heappop, heappush

n, m = map(int, input().split())
x, y = map(int, input().split())
x -= 1
y -= 1
P = [list(map(int, input().split())) for _ in range(n)]
Edge = defaultdict(list)
for _ in range(m):
    p, q = map(int, input().split())
    p -= 1
    q -= 1
    d = sqrt((P[p][0] - P[q][0])**2 + (P[p][1] - P[q][1])**2)
    Edge[p].append((q, d))
    Edge[q].append((p, d))

INF = 10**18
D = [INF for _ in range(n)]
D[x] = 0
H = [(0, x)]
heapify(H)
while H:
    d, cp = heappop(H)
    if cp == y:
        print(d)
        break
    if d > D[cp]:
        continue
    for np, dd in Edge[cp]:
        if d + dd >= D[np]:
            continue
        D[np] = d + dd
        heappush(H, (d + dd, np))
0