結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-05-30 00:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 703 ms / 2,000 ms
コード長 702 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 142,512 KB
最終ジャッジ日時 2024-11-06 09:59:24
合計ジャッジ時間 14,136 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,960 KB
testcase_01 AC 40 ms
54,808 KB
testcase_02 AC 275 ms
109,088 KB
testcase_03 AC 300 ms
140,596 KB
testcase_04 AC 317 ms
140,888 KB
testcase_05 AC 291 ms
142,512 KB
testcase_06 AC 281 ms
142,464 KB
testcase_07 AC 128 ms
88,524 KB
testcase_08 AC 312 ms
141,748 KB
testcase_09 AC 90 ms
80,776 KB
testcase_10 AC 183 ms
105,828 KB
testcase_11 AC 142 ms
93,552 KB
testcase_12 AC 115 ms
88,304 KB
testcase_13 AC 455 ms
112,992 KB
testcase_14 AC 386 ms
120,256 KB
testcase_15 AC 557 ms
129,272 KB
testcase_16 AC 301 ms
99,468 KB
testcase_17 AC 703 ms
132,264 KB
testcase_18 AC 215 ms
91,924 KB
testcase_19 AC 586 ms
130,132 KB
testcase_20 AC 180 ms
90,816 KB
testcase_21 AC 258 ms
96,456 KB
testcase_22 AC 430 ms
124,404 KB
testcase_23 AC 58 ms
72,088 KB
testcase_24 AC 60 ms
73,800 KB
testcase_25 AC 114 ms
87,856 KB
testcase_26 AC 328 ms
108,484 KB
testcase_27 AC 286 ms
106,004 KB
testcase_28 AC 427 ms
127,784 KB
testcase_29 AC 115 ms
82,912 KB
testcase_30 AC 449 ms
134,368 KB
testcase_31 AC 271 ms
110,888 KB
testcase_32 AC 203 ms
99,908 KB
testcase_33 AC 364 ms
132,704 KB
testcase_34 AC 205 ms
94,300 KB
testcase_35 AC 442 ms
135,720 KB
testcase_36 AC 63 ms
71,124 KB
testcase_37 AC 67 ms
75,060 KB
testcase_38 AC 67 ms
71,776 KB
testcase_39 AC 79 ms
77,748 KB
testcase_40 AC 58 ms
66,832 KB
testcase_41 AC 525 ms
141,860 KB
testcase_42 AC 183 ms
93,256 KB
testcase_43 AC 284 ms
107,016 KB
testcase_44 AC 149 ms
87,376 KB
testcase_45 AC 306 ms
110,260 KB
testcase_46 AC 41 ms
54,744 KB
testcase_47 AC 42 ms
54,492 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