結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー pluto77pluto77
提出日時 2020-06-19 14:30:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,788 ms / 2,000 ms
コード長 518 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 142,828 KB
最終ジャッジ日時 2024-07-03 13:23:50
合計ジャッジ時間 28,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,888 KB
testcase_01 AC 39 ms
54,656 KB
testcase_02 AC 455 ms
109,816 KB
testcase_03 AC 816 ms
142,084 KB
testcase_04 AC 1,182 ms
141,948 KB
testcase_05 AC 565 ms
142,592 KB
testcase_06 AC 575 ms
142,472 KB
testcase_07 AC 225 ms
94,204 KB
testcase_08 AC 590 ms
142,828 KB
testcase_09 AC 139 ms
82,292 KB
testcase_10 AC 329 ms
106,048 KB
testcase_11 AC 244 ms
97,152 KB
testcase_12 AC 244 ms
89,264 KB
testcase_13 AC 1,334 ms
113,180 KB
testcase_14 AC 857 ms
120,192 KB
testcase_15 AC 1,318 ms
129,176 KB
testcase_16 AC 883 ms
101,120 KB
testcase_17 AC 1,788 ms
133,376 KB
testcase_18 AC 610 ms
93,952 KB
testcase_19 AC 1,421 ms
129,792 KB
testcase_20 AC 391 ms
92,400 KB
testcase_21 AC 869 ms
98,048 KB
testcase_22 AC 955 ms
123,136 KB
testcase_23 AC 84 ms
77,312 KB
testcase_24 AC 88 ms
77,696 KB
testcase_25 AC 227 ms
88,320 KB
testcase_26 AC 819 ms
108,516 KB
testcase_27 AC 677 ms
106,908 KB
testcase_28 AC 982 ms
125,696 KB
testcase_29 AC 265 ms
83,176 KB
testcase_30 AC 1,038 ms
133,376 KB
testcase_31 AC 524 ms
117,120 KB
testcase_32 AC 364 ms
101,888 KB
testcase_33 AC 667 ms
130,556 KB
testcase_34 AC 502 ms
95,872 KB
testcase_35 AC 943 ms
134,784 KB
testcase_36 AC 88 ms
77,568 KB
testcase_37 AC 104 ms
78,336 KB
testcase_38 AC 92 ms
77,568 KB
testcase_39 AC 119 ms
78,464 KB
testcase_40 AC 70 ms
70,912 KB
testcase_41 AC 896 ms
142,208 KB
testcase_42 AC 307 ms
97,400 KB
testcase_43 AC 482 ms
111,992 KB
testcase_44 AC 238 ms
89,812 KB
testcase_45 AC 457 ms
110,948 KB
testcase_46 AC 38 ms
54,272 KB
testcase_47 AC 38 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1065
from collections import deque
from math import *

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]+hypot(a-c,b-d)
  if k<res[j]:
   res[j]=k
   q.append(j)
print(res[Y])
0