結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,016 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 415 ms
105,344 KB
testcase_03 AC 496 ms
135,528 KB
testcase_04 AC 545 ms
135,904 KB
testcase_05 AC 445 ms
141,056 KB
testcase_06 AC 422 ms
141,056 KB
testcase_07 AC 214 ms
92,416 KB
testcase_08 AC 479 ms
142,336 KB
testcase_09 AC 151 ms
81,408 KB
testcase_10 AC 278 ms
102,528 KB
testcase_11 AC 231 ms
96,768 KB
testcase_12 AC 190 ms
89,088 KB
testcase_13 AC 663 ms
114,176 KB
testcase_14 AC 563 ms
119,808 KB
testcase_15 AC 763 ms
127,872 KB
testcase_16 AC 455 ms
100,480 KB
testcase_17 AC 929 ms
133,376 KB
testcase_18 AC 336 ms
93,056 KB
testcase_19 AC 803 ms
132,608 KB
testcase_20 AC 272 ms
88,704 KB
testcase_21 AC 430 ms
97,152 KB
testcase_22 AC 678 ms
122,112 KB
testcase_23 AC 101 ms
78,080 KB
testcase_24 AC 108 ms
77,824 KB
testcase_25 AC 193 ms
87,808 KB
testcase_26 AC 567 ms
107,648 KB
testcase_27 AC 470 ms
107,008 KB
testcase_28 AC 705 ms
127,616 KB
testcase_29 AC 197 ms
83,072 KB
testcase_30 AC 761 ms
129,152 KB
testcase_31 AC 443 ms
112,768 KB
testcase_32 AC 324 ms
99,456 KB
testcase_33 AC 570 ms
129,024 KB
testcase_34 AC 317 ms
92,928 KB
testcase_35 AC 651 ms
135,040 KB
testcase_36 AC 108 ms
77,440 KB
testcase_37 AC 126 ms
78,080 KB
testcase_38 AC 114 ms
77,696 KB
testcase_39 AC 130 ms
78,208 KB
testcase_40 AC 84 ms
70,272 KB
testcase_41 AC 742 ms
142,592 KB
testcase_42 AC 279 ms
95,872 KB
testcase_43 AC 425 ms
110,592 KB
testcase_44 AC 235 ms
90,624 KB
testcase_45 AC 423 ms
110,592 KB
testcase_46 AC 46 ms
53,504 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=[1e9]*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