結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
54,016 KB
testcase_01 AC 46 ms
54,272 KB
testcase_02 AC 367 ms
105,600 KB
testcase_03 AC 482 ms
135,404 KB
testcase_04 AC 529 ms
135,132 KB
testcase_05 AC 425 ms
140,800 KB
testcase_06 AC 427 ms
140,928 KB
testcase_07 AC 219 ms
93,184 KB
testcase_08 AC 534 ms
142,720 KB
testcase_09 AC 158 ms
81,664 KB
testcase_10 AC 276 ms
102,272 KB
testcase_11 AC 236 ms
96,896 KB
testcase_12 AC 198 ms
89,344 KB
testcase_13 AC 705 ms
114,048 KB
testcase_14 AC 565 ms
120,064 KB
testcase_15 AC 753 ms
128,256 KB
testcase_16 AC 446 ms
101,120 KB
testcase_17 AC 873 ms
133,248 KB
testcase_18 AC 332 ms
93,056 KB
testcase_19 AC 797 ms
132,736 KB
testcase_20 AC 265 ms
88,832 KB
testcase_21 AC 414 ms
97,152 KB
testcase_22 AC 598 ms
122,112 KB
testcase_23 AC 98 ms
77,824 KB
testcase_24 AC 103 ms
77,312 KB
testcase_25 AC 183 ms
87,808 KB
testcase_26 AC 465 ms
107,776 KB
testcase_27 AC 406 ms
107,136 KB
testcase_28 AC 585 ms
127,616 KB
testcase_29 AC 187 ms
83,200 KB
testcase_30 AC 642 ms
129,152 KB
testcase_31 AC 393 ms
113,280 KB
testcase_32 AC 305 ms
99,456 KB
testcase_33 AC 506 ms
129,152 KB
testcase_34 AC 305 ms
93,184 KB
testcase_35 AC 601 ms
134,784 KB
testcase_36 AC 108 ms
77,696 KB
testcase_37 AC 125 ms
78,464 KB
testcase_38 AC 113 ms
77,824 KB
testcase_39 AC 127 ms
78,080 KB
testcase_40 AC 82 ms
70,400 KB
testcase_41 AC 715 ms
142,464 KB
testcase_42 AC 277 ms
95,232 KB
testcase_43 AC 409 ms
110,848 KB
testcase_44 AC 232 ms
90,496 KB
testcase_45 AC 401 ms
110,592 KB
testcase_46 AC 45 ms
53,632 KB
testcase_47 AC 45 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
r=lambda:list(map(int,input().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=[1e20]*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