結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:37:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 423 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 163,712 KB
最終ジャッジ日時 2024-11-24 15:15:27
合計ジャッジ時間 69,767 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 29 ms
115,200 KB
testcase_02 AC 947 ms
72,576 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,217 ms
163,712 KB
testcase_06 AC 1,214 ms
104,356 KB
testcase_07 AC 392 ms
46,336 KB
testcase_08 AC 1,580 ms
131,712 KB
testcase_09 AC 142 ms
105,088 KB
testcase_10 AC 674 ms
67,456 KB
testcase_11 AC 443 ms
93,056 KB
testcase_12 AC 419 ms
36,864 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,392 ms
38,656 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 47 ms
91,648 KB
testcase_24 AC 51 ms
17,152 KB
testcase_25 AC 387 ms
28,800 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 594 ms
20,992 KB
testcase_30 TLE -
testcase_31 AC 1,061 ms
65,792 KB
testcase_32 AC 840 ms
47,104 KB
testcase_33 AC 1,506 ms
83,576 KB
testcase_34 AC 1,472 ms
39,424 KB
testcase_35 TLE -
testcase_36 AC 93 ms
11,136 KB
testcase_37 AC 87 ms
11,520 KB
testcase_38 AC 75 ms
11,264 KB
testcase_39 AC 88 ms
11,520 KB
testcase_40 AC 50 ms
10,752 KB
testcase_41 TLE -
testcase_42 AC 578 ms
46,080 KB
testcase_43 AC 1,010 ms
71,552 KB
testcase_44 AC 349 ms
32,896 KB
testcase_45 AC 999 ms
70,272 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
99,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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