結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:20:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 703 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 142,336 KB
最終ジャッジ日時 2024-11-24 14:37:13
合計ジャッジ時間 17,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 48 ms
53,888 KB
testcase_02 AC 347 ms
108,800 KB
testcase_03 AC 360 ms
140,544 KB
testcase_04 AC 379 ms
140,544 KB
testcase_05 AC 334 ms
142,336 KB
testcase_06 AC 331 ms
142,208 KB
testcase_07 AC 152 ms
88,576 KB
testcase_08 AC 364 ms
142,080 KB
testcase_09 AC 112 ms
80,896 KB
testcase_10 AC 214 ms
105,600 KB
testcase_11 AC 167 ms
93,440 KB
testcase_12 AC 143 ms
87,552 KB
testcase_13 AC 621 ms
113,152 KB
testcase_14 AC 499 ms
120,192 KB
testcase_15 AC 747 ms
129,408 KB
testcase_16 AC 352 ms
99,584 KB
testcase_17 AC 959 ms
132,480 KB
testcase_18 AC 251 ms
91,776 KB
testcase_19 AC 790 ms
130,048 KB
testcase_20 AC 219 ms
90,880 KB
testcase_21 AC 310 ms
96,768 KB
testcase_22 AC 555 ms
124,032 KB
testcase_23 AC 71 ms
70,016 KB
testcase_24 AC 77 ms
72,320 KB
testcase_25 AC 139 ms
87,552 KB
testcase_26 AC 438 ms
108,032 KB
testcase_27 AC 339 ms
105,984 KB
testcase_28 AC 554 ms
127,616 KB
testcase_29 AC 134 ms
82,816 KB
testcase_30 AC 562 ms
134,272 KB
testcase_31 AC 313 ms
110,720 KB
testcase_32 AC 237 ms
99,840 KB
testcase_33 AC 429 ms
132,864 KB
testcase_34 AC 245 ms
94,336 KB
testcase_35 AC 570 ms
135,680 KB
testcase_36 AC 79 ms
70,656 KB
testcase_37 AC 85 ms
73,728 KB
testcase_38 AC 80 ms
70,912 KB
testcase_39 AC 96 ms
77,312 KB
testcase_40 AC 68 ms
66,304 KB
testcase_41 AC 630 ms
141,696 KB
testcase_42 AC 225 ms
93,056 KB
testcase_43 AC 337 ms
106,624 KB
testcase_44 AC 176 ms
86,912 KB
testcase_45 AC 347 ms
109,952 KB
testcase_46 AC 53 ms
53,760 KB
testcase_47 AC 48 ms
53,888 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