結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:39:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 471 bytes
コンパイル時間 586 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 164,096 KB
最終ジャッジ日時 2024-11-24 15:23:09
合計ジャッジ時間 65,691 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,256 KB
testcase_01 AC 30 ms
115,456 KB
testcase_02 AC 908 ms
72,576 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,142 ms
164,096 KB
testcase_06 AC 1,138 ms
102,912 KB
testcase_07 AC 355 ms
116,480 KB
testcase_08 AC 1,528 ms
131,712 KB
testcase_09 AC 129 ms
105,472 KB
testcase_10 AC 608 ms
67,456 KB
testcase_11 AC 396 ms
93,056 KB
testcase_12 AC 387 ms
36,608 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,127 ms
33,536 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 44 ms
11,392 KB
testcase_24 AC 45 ms
11,776 KB
testcase_25 AC 352 ms
28,928 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 537 ms
20,864 KB
testcase_30 TLE -
testcase_31 AC 923 ms
65,408 KB
testcase_32 AC 710 ms
46,976 KB
testcase_33 AC 1,336 ms
83,584 KB
testcase_34 AC 1,245 ms
39,936 KB
testcase_35 TLE -
testcase_36 AC 85 ms
11,136 KB
testcase_37 AC 80 ms
11,520 KB
testcase_38 AC 67 ms
11,264 KB
testcase_39 AC 80 ms
11,648 KB
testcase_40 AC 45 ms
10,752 KB
testcase_41 AC 1,823 ms
125,824 KB
testcase_42 AC 585 ms
45,824 KB
testcase_43 AC 886 ms
71,680 KB
testcase_44 AC 290 ms
33,152 KB
testcase_45 AC 876 ms
70,144 KB
testcase_46 AC 26 ms
10,880 KB
testcase_47 AC 26 ms
55,296 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=[list(map(int,s().split()))for _ in range(N)]
P=[list(map(int,s().split()))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