結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:27:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 376 bytes
コンパイル時間 509 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 164,608 KB
最終ジャッジ日時 2024-11-24 14:56:32
合計ジャッジ時間 72,162 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,128 KB
testcase_01 AC 29 ms
115,828 KB
testcase_02 AC 1,132 ms
72,960 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,616 ms
164,608 KB
testcase_06 AC 1,669 ms
103,040 KB
testcase_07 AC 505 ms
116,864 KB
testcase_08 TLE -
testcase_09 AC 177 ms
105,728 KB
testcase_10 AC 852 ms
67,712 KB
testcase_11 AC 573 ms
93,184 KB
testcase_12 AC 537 ms
36,992 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,231 ms
39,040 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 49 ms
65,980 KB
testcase_24 AC 53 ms
17,024 KB
testcase_25 AC 473 ms
29,312 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 603 ms
21,120 KB
testcase_30 TLE -
testcase_31 AC 1,214 ms
65,664 KB
testcase_32 AC 914 ms
47,312 KB
testcase_33 AC 1,759 ms
84,196 KB
testcase_34 AC 1,419 ms
39,936 KB
testcase_35 TLE -
testcase_36 AC 88 ms
11,264 KB
testcase_37 AC 84 ms
11,648 KB
testcase_38 AC 71 ms
11,264 KB
testcase_39 AC 85 ms
11,648 KB
testcase_40 AC 46 ms
11,136 KB
testcase_41 TLE -
testcase_42 AC 660 ms
46,208 KB
testcase_43 AC 1,198 ms
71,552 KB
testcase_44 AC 405 ms
33,024 KB
testcase_45 AC 1,151 ms
70,272 KB
testcase_46 AC 26 ms
10,880 KB
testcase_47 AC 25 ms
99,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
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=[X-1]
t=[1e9]*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]+math.sqrt((a-c)*(a-c)+(b-d)*(b-d))
		if k<t[j]:
			t[j]=k
			q.append(j)
print(t[Y-1])
0