結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー pluto77pluto77
提出日時 2020-06-19 14:20:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 143,128 KB
最終ジャッジ日時 2024-07-03 13:21:27
合計ジャッジ時間 16,146 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,192 KB
testcase_01 AC 42 ms
54,312 KB
testcase_02 AC 338 ms
109,248 KB
testcase_03 AC 397 ms
142,800 KB
testcase_04 AC 422 ms
143,128 KB
testcase_05 AC 396 ms
142,628 KB
testcase_06 AC 376 ms
142,292 KB
testcase_07 AC 180 ms
94,164 KB
testcase_08 AC 404 ms
138,396 KB
testcase_09 AC 121 ms
82,464 KB
testcase_10 AC 248 ms
106,040 KB
testcase_11 AC 210 ms
97,020 KB
testcase_12 AC 152 ms
87,236 KB
testcase_13 AC 517 ms
113,968 KB
testcase_14 AC 451 ms
120,900 KB
testcase_15 AC 599 ms
130,824 KB
testcase_16 AC 341 ms
100,596 KB
testcase_17 AC 715 ms
135,052 KB
testcase_18 AC 269 ms
93,584 KB
testcase_19 AC 651 ms
130,112 KB
testcase_20 AC 207 ms
89,920 KB
testcase_21 AC 310 ms
97,856 KB
testcase_22 AC 491 ms
123,088 KB
testcase_23 AC 77 ms
77,696 KB
testcase_24 AC 78 ms
77,808 KB
testcase_25 AC 149 ms
87,688 KB
testcase_26 AC 376 ms
108,856 KB
testcase_27 AC 331 ms
105,472 KB
testcase_28 AC 497 ms
123,748 KB
testcase_29 AC 151 ms
83,844 KB
testcase_30 AC 538 ms
134,748 KB
testcase_31 AC 349 ms
117,112 KB
testcase_32 AC 263 ms
100,556 KB
testcase_33 AC 458 ms
130,540 KB
testcase_34 AC 260 ms
93,992 KB
testcase_35 AC 509 ms
134,916 KB
testcase_36 AC 85 ms
77,820 KB
testcase_37 AC 97 ms
78,804 KB
testcase_38 AC 85 ms
77,864 KB
testcase_39 AC 102 ms
78,380 KB
testcase_40 AC 63 ms
71,924 KB
testcase_41 AC 636 ms
142,520 KB
testcase_42 AC 246 ms
96,964 KB
testcase_43 AC 358 ms
111,764 KB
testcase_44 AC 181 ms
85,868 KB
testcase_45 AC 350 ms
110,876 KB
testcase_46 AC 38 ms
54,936 KB
testcase_47 AC 39 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1065
from collections import deque
from math import sqrt

N,M=map(int,input().split())
X,Y=map(int,input().split())
X-=1
Y-=1
pq=[list(map(int,input().split())) for i in range(N)]
PQ=[list(map(int,input().split())) for i in range(M)]
edge=[[] for i in range(N)]
for P,Q in PQ:
 edge[P-1].append(Q-1)
 edge[Q-1].append(P-1)

q=deque([X])
res=[float('inf')]*N
res[X]=0
while q:
 i=q.popleft()
 for j in edge[i]:
  a,b=pq[i]
  c,d=pq[j]
  k=res[i]+sqrt((a-c)**2+(b-d)**2)
  if k<res[j]:
   res[j]=k
   q.append(j)
print(res[Y])
0