結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-05-29 21:41:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 142,572 KB
最終ジャッジ日時 2024-11-06 03:10:08
合計ジャッジ時間 15,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,552 KB
testcase_01 AC 41 ms
54,936 KB
testcase_02 AC 334 ms
108,840 KB
testcase_03 AC 336 ms
140,540 KB
testcase_04 AC 344 ms
140,816 KB
testcase_05 AC 309 ms
142,572 KB
testcase_06 AC 313 ms
142,472 KB
testcase_07 AC 137 ms
88,724 KB
testcase_08 AC 350 ms
142,144 KB
testcase_09 AC 93 ms
80,540 KB
testcase_10 AC 199 ms
105,560 KB
testcase_11 AC 150 ms
93,496 KB
testcase_12 AC 129 ms
88,036 KB
testcase_13 AC 593 ms
112,732 KB
testcase_14 AC 504 ms
120,308 KB
testcase_15 AC 629 ms
129,464 KB
testcase_16 AC 320 ms
99,928 KB
testcase_17 AC 921 ms
132,580 KB
testcase_18 AC 229 ms
91,916 KB
testcase_19 AC 700 ms
130,092 KB
testcase_20 AC 193 ms
90,824 KB
testcase_21 AC 280 ms
96,836 KB
testcase_22 AC 543 ms
124,344 KB
testcase_23 AC 61 ms
71,024 KB
testcase_24 AC 64 ms
72,912 KB
testcase_25 AC 124 ms
87,568 KB
testcase_26 AC 391 ms
108,536 KB
testcase_27 AC 307 ms
106,328 KB
testcase_28 AC 482 ms
127,788 KB
testcase_29 AC 120 ms
82,896 KB
testcase_30 AC 520 ms
134,772 KB
testcase_31 AC 275 ms
110,588 KB
testcase_32 AC 213 ms
100,124 KB
testcase_33 AC 418 ms
132,684 KB
testcase_34 AC 216 ms
94,032 KB
testcase_35 AC 516 ms
136,196 KB
testcase_36 AC 66 ms
72,144 KB
testcase_37 AC 71 ms
74,604 KB
testcase_38 AC 67 ms
72,420 KB
testcase_39 AC 79 ms
77,424 KB
testcase_40 AC 58 ms
67,072 KB
testcase_41 AC 583 ms
141,784 KB
testcase_42 AC 189 ms
92,936 KB
testcase_43 AC 301 ms
106,772 KB
testcase_44 AC 154 ms
87,196 KB
testcase_45 AC 307 ms
110,496 KB
testcase_46 AC 42 ms
54,032 KB
testcase_47 AC 42 ms
55,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
from sys import stdin
from collections import deque

readline = stdin.readline

N, M = map(int, readline().split())
X, Y = map(lambda x: int(x) - 1, readline().split())
pq = [list(map(int, readline().split())) for _ in range(N)]
PQ = [list(map(int, readline().split())) for _ in range(M)]

links = [[] for _ in range(N)]
for P, Q in PQ:
    links[P - 1].append(Q - 1)
    links[Q - 1].append(P - 1)

q = deque([X])
t = [float('inf')] * N
t[X] = 0
while q:
    i = q.popleft()
    for j in links[i]:
        a, b = pq[i]
        c, d = pq[j]
        k = t[i] + sqrt((a - c) * (a -c) + (b - d) * (b - d))
        if k < t[j]:
            t[j] = k
            q.append(j)
print(t[Y])
0