結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:17:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 421 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 170,880 KB
最終ジャッジ日時 2024-11-24 14:30:17
合計ジャッジ時間 60,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,000 KB
testcase_01 AC 28 ms
96,768 KB
testcase_02 AC 1,167 ms
72,960 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,635 ms
97,152 KB
testcase_06 AC 1,603 ms
97,280 KB
testcase_07 AC 502 ms
41,472 KB
testcase_08 TLE -
testcase_09 AC 176 ms
20,608 KB
testcase_10 AC 843 ms
62,080 KB
testcase_11 AC 565 ms
45,952 KB
testcase_12 AC 531 ms
31,616 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,843 ms
47,616 KB
testcase_17 TLE -
testcase_18 AC 1,208 ms
38,016 KB
testcase_19 TLE -
testcase_20 AC 723 ms
33,664 KB
testcase_21 AC 1,733 ms
44,416 KB
testcase_22 TLE -
testcase_23 AC 50 ms
11,520 KB
testcase_24 AC 55 ms
11,776 KB
testcase_25 AC 482 ms
28,928 KB
testcase_26 AC 1,705 ms
54,528 KB
testcase_27 AC 1,472 ms
53,632 KB
testcase_28 TLE -
testcase_29 AC 405 ms
20,992 KB
testcase_30 TLE -
testcase_31 AC 1,281 ms
65,872 KB
testcase_32 AC 791 ms
46,720 KB
testcase_33 AC 1,743 ms
84,288 KB
testcase_34 AC 982 ms
39,808 KB
testcase_35 TLE -
testcase_36 AC 43 ms
11,136 KB
testcase_37 AC 52 ms
11,776 KB
testcase_38 AC 46 ms
11,264 KB
testcase_39 AC 51 ms
11,648 KB
testcase_40 AC 35 ms
11,136 KB
testcase_41 TLE -
testcase_42 AC 664 ms
46,080 KB
testcase_43 AC 1,226 ms
71,552 KB
testcase_44 AC 416 ms
33,152 KB
testcase_45 AC 1,208 ms
70,272 KB
testcase_46 AC 27 ms
10,880 KB
testcase_47 AC 25 ms
101,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
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]+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