結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:38:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 427 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 185,728 KB
最終ジャッジ日時 2024-11-24 15:19:07
合計ジャッジ時間 34,584 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,008 KB
testcase_01 AC 39 ms
62,868 KB
testcase_02 AC 325 ms
109,184 KB
testcase_03 AC 607 ms
141,556 KB
testcase_04 AC 571 ms
141,812 KB
testcase_05 AC 305 ms
135,224 KB
testcase_06 AC 314 ms
135,232 KB
testcase_07 AC 137 ms
88,464 KB
testcase_08 AC 341 ms
136,832 KB
testcase_09 AC 95 ms
80,652 KB
testcase_10 AC 199 ms
105,940 KB
testcase_11 AC 149 ms
91,396 KB
testcase_12 AC 130 ms
87,424 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 1,434 ms
93,696 KB
testcase_19 TLE -
testcase_20 AC 367 ms
90,880 KB
testcase_21 TLE -
testcase_22 AC 917 ms
123,264 KB
testcase_23 AC 60 ms
71,296 KB
testcase_24 AC 62 ms
74,112 KB
testcase_25 AC 124 ms
87,708 KB
testcase_26 AC 713 ms
108,700 KB
testcase_27 AC 667 ms
105,892 KB
testcase_28 AC 880 ms
125,696 KB
testcase_29 AC 150 ms
83,180 KB
testcase_30 AC 774 ms
134,656 KB
testcase_31 AC 350 ms
117,884 KB
testcase_32 AC 264 ms
97,920 KB
testcase_33 AC 450 ms
129,628 KB
testcase_34 AC 353 ms
94,396 KB
testcase_35 AC 973 ms
130,060 KB
testcase_36 AC 68 ms
72,960 KB
testcase_37 AC 82 ms
77,568 KB
testcase_38 AC 67 ms
72,192 KB
testcase_39 AC 85 ms
77,568 KB
testcase_40 AC 57 ms
66,560 KB
testcase_41 AC 614 ms
142,272 KB
testcase_42 AC 207 ms
91,192 KB
testcase_43 AC 345 ms
111,524 KB
testcase_44 AC 152 ms
85,888 KB
testcase_45 AC 320 ms
106,112 KB
testcase_46 AC 40 ms
53,888 KB
testcase_47 AC 40 ms
185,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque
s=sys.stdin.readline
r=lambda:list(map(int,s().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.pop()
	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