結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー takakintakakin
提出日時 2020-06-03 23:58:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,475 ms / 2,000 ms
コード長 868 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 161,496 KB
最終ジャッジ日時 2024-11-26 10:18:52
合計ジャッジ時間 30,907 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 36 ms
52,736 KB
testcase_02 AC 621 ms
117,416 KB
testcase_03 AC 1,174 ms
159,140 KB
testcase_04 AC 1,124 ms
160,020 KB
testcase_05 AC 850 ms
156,372 KB
testcase_06 AC 801 ms
156,632 KB
testcase_07 AC 156 ms
92,416 KB
testcase_08 AC 386 ms
150,528 KB
testcase_09 AC 103 ms
80,384 KB
testcase_10 AC 222 ms
109,824 KB
testcase_11 AC 178 ms
97,024 KB
testcase_12 AC 473 ms
105,680 KB
testcase_13 AC 1,031 ms
138,704 KB
testcase_14 AC 1,136 ms
145,756 KB
testcase_15 AC 1,292 ms
153,936 KB
testcase_16 AC 746 ms
121,632 KB
testcase_17 AC 1,475 ms
161,496 KB
testcase_18 AC 580 ms
109,524 KB
testcase_19 AC 1,144 ms
154,352 KB
testcase_20 AC 382 ms
98,304 KB
testcase_21 AC 768 ms
121,652 KB
testcase_22 AC 1,175 ms
149,604 KB
testcase_23 AC 106 ms
77,696 KB
testcase_24 AC 111 ms
78,080 KB
testcase_25 AC 408 ms
102,528 KB
testcase_26 AC 647 ms
121,612 KB
testcase_27 AC 791 ms
124,440 KB
testcase_28 AC 1,341 ms
157,080 KB
testcase_29 AC 269 ms
89,344 KB
testcase_30 AC 1,270 ms
156,200 KB
testcase_31 AC 788 ms
130,516 KB
testcase_32 AC 532 ms
111,872 KB
testcase_33 AC 1,217 ms
152,296 KB
testcase_34 AC 548 ms
109,568 KB
testcase_35 AC 1,250 ms
159,456 KB
testcase_36 AC 104 ms
77,040 KB
testcase_37 AC 120 ms
78,080 KB
testcase_38 AC 106 ms
77,136 KB
testcase_39 AC 116 ms
77,952 KB
testcase_40 AC 64 ms
66,688 KB
testcase_41 AC 1,070 ms
151,168 KB
testcase_42 AC 363 ms
99,888 KB
testcase_43 AC 596 ms
116,124 KB
testcase_44 AC 254 ms
92,032 KB
testcase_45 AC 561 ms
115,712 KB
testcase_46 AC 38 ms
52,608 KB
testcase_47 AC 37 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,m=map(int,input().split())
x,y=map(int,input().split())
PQ=[tuple(int(i) for i in input().split()) for _ in range(n)]

def f(A,B):
  a1,a2=A
  b1,b2=B
  return ((a1-b1)**2+(a2-b2)**2)**0.5

edge=[[] for i in range(n)]
for _ in range(m):
  p,q=map(int,input().split())
  dis=f(PQ[p-1],PQ[q-1])
  edge[p-1].append([dis,q-1])
  edge[q-1].append([dis,p-1])

import heapq
def dijkstra_heap(s):
  d=[float("inf")]*n
  used=[True]*n
  d[s]=0
  used[s]=False
  edgelist=[]
  for e in edge[s]:
    heapq.heappush(edgelist,e)
  while edgelist:
    minedge = heapq.heappop(edgelist)
    if not used[minedge[1]]:
      continue
    v = minedge[1]
    d[v] = minedge[0]
    used[v] = False
    for e in edge[v]:
      if used[e[1]]:
        heapq.heappush(edgelist,[e[0]+d[v],e[1]])
  return d
print(dijkstra_heap(x-1)[y-1])
0