結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー c-yanc-yan
提出日時 2020-06-02 22:29:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,651 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 142,608 KB
最終ジャッジ日時 2024-11-24 14:59:00
合計ジャッジ時間 22,662 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,164 KB
testcase_01 AC 41 ms
56,176 KB
testcase_02 AC 307 ms
105,392 KB
testcase_03 AC 467 ms
137,152 KB
testcase_04 AC 457 ms
137,144 KB
testcase_05 AC 374 ms
141,384 KB
testcase_06 AC 362 ms
141,256 KB
testcase_07 AC 172 ms
92,656 KB
testcase_08 AC 407 ms
142,608 KB
testcase_09 AC 119 ms
81,804 KB
testcase_10 AC 224 ms
102,604 KB
testcase_11 AC 189 ms
97,052 KB
testcase_12 AC 147 ms
89,296 KB
testcase_13 AC 1,405 ms
114,932 KB
testcase_14 AC 1,159 ms
120,248 KB
testcase_15 AC 1,453 ms
128,504 KB
testcase_16 AC 1,333 ms
100,928 KB
testcase_17 AC 1,651 ms
133,960 KB
testcase_18 AC 819 ms
94,616 KB
testcase_19 AC 1,088 ms
132,568 KB
testcase_20 AC 243 ms
91,984 KB
testcase_21 AC 1,126 ms
97,344 KB
testcase_22 AC 575 ms
122,428 KB
testcase_23 AC 73 ms
77,776 KB
testcase_24 AC 79 ms
77,604 KB
testcase_25 AC 140 ms
87,848 KB
testcase_26 AC 436 ms
107,880 KB
testcase_27 AC 410 ms
107,140 KB
testcase_28 AC 562 ms
127,212 KB
testcase_29 AC 152 ms
83,092 KB
testcase_30 AC 549 ms
131,224 KB
testcase_31 AC 313 ms
113,060 KB
testcase_32 AC 240 ms
99,456 KB
testcase_33 AC 390 ms
124,404 KB
testcase_34 AC 273 ms
95,280 KB
testcase_35 AC 654 ms
136,388 KB
testcase_36 AC 82 ms
77,660 KB
testcase_37 AC 100 ms
78,384 KB
testcase_38 AC 81 ms
77,424 KB
testcase_39 AC 102 ms
78,328 KB
testcase_40 AC 61 ms
71,516 KB
testcase_41 AC 571 ms
142,504 KB
testcase_42 AC 229 ms
95,580 KB
testcase_43 AC 337 ms
110,776 KB
testcase_44 AC 165 ms
85,792 KB
testcase_45 AC 327 ms
110,824 KB
testcase_46 AC 39 ms
55,012 KB
testcase_47 AC 38 ms
54,368 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.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