結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:42:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 735 ms / 2,000 ms
コード長 425 bytes
コンパイル時間 688 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 142,112 KB
最終ジャッジ日時 2024-11-24 15:33:40
合計ジャッジ時間 15,236 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
54,312 KB
testcase_01 AC 39 ms
54,636 KB
testcase_02 AC 296 ms
108,740 KB
testcase_03 AC 337 ms
139,340 KB
testcase_04 AC 373 ms
139,532 KB
testcase_05 AC 276 ms
138,740 KB
testcase_06 AC 291 ms
139,124 KB
testcase_07 AC 132 ms
88,260 KB
testcase_08 AC 312 ms
136,884 KB
testcase_09 AC 91 ms
80,876 KB
testcase_10 AC 180 ms
105,928 KB
testcase_11 AC 139 ms
91,160 KB
testcase_12 AC 120 ms
87,628 KB
testcase_13 AC 561 ms
112,080 KB
testcase_14 AC 457 ms
119,616 KB
testcase_15 AC 601 ms
130,288 KB
testcase_16 AC 338 ms
100,232 KB
testcase_17 AC 735 ms
131,948 KB
testcase_18 AC 246 ms
93,408 KB
testcase_19 AC 650 ms
129,504 KB
testcase_20 AC 193 ms
90,928 KB
testcase_21 AC 304 ms
96,544 KB
testcase_22 AC 482 ms
122,772 KB
testcase_23 AC 56 ms
72,744 KB
testcase_24 AC 61 ms
74,028 KB
testcase_25 AC 117 ms
87,948 KB
testcase_26 AC 363 ms
108,516 KB
testcase_27 AC 301 ms
105,516 KB
testcase_28 AC 436 ms
126,008 KB
testcase_29 AC 118 ms
83,064 KB
testcase_30 AC 489 ms
134,992 KB
testcase_31 AC 295 ms
117,824 KB
testcase_32 AC 205 ms
98,040 KB
testcase_33 AC 372 ms
129,876 KB
testcase_34 AC 223 ms
94,184 KB
testcase_35 AC 491 ms
128,464 KB
testcase_36 AC 64 ms
72,932 KB
testcase_37 AC 76 ms
77,776 KB
testcase_38 AC 66 ms
73,304 KB
testcase_39 AC 78 ms
77,728 KB
testcase_40 AC 54 ms
67,924 KB
testcase_41 AC 551 ms
142,112 KB
testcase_42 AC 175 ms
90,928 KB
testcase_43 AC 295 ms
111,300 KB
testcase_44 AC 144 ms
86,000 KB
testcase_45 AC 267 ms
105,948 KB
testcase_46 AC 39 ms
53,992 KB
testcase_47 AC 40 ms
54,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
r=lambda:list(map(int,sys.stdin.readline().split()))
N,M=r()
X,Y=r()
p=[r()for _ in range(N)]
P=[r()for _ in range(M)]
l=[[]for _ in range(N)]
for a,b in P:
	l[a-1].append(b-1)
	l[b-1].append(a-1)
q=deque([X-1])
t=[9e9]*N
t[X-1]=0
while q:
	i=q.popleft()
	for j in l[i]:
		a,b=p[i]
		c,d=p[j]
		k=t[i]+((a-c)*(a-c)+(b-d)*(b-d))**0.5
		if k<t[j]:
			t[j]=k
			q.append(j)
print(t[Y-1])
0