結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー takakintakakin
提出日時 2020-06-04 00:02:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,724 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-11-26 10:23:49
合計ジャッジ時間 35,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 835 ms
46,208 KB
testcase_03 AC 1,305 ms
69,376 KB
testcase_04 AC 1,312 ms
70,784 KB
testcase_05 AC 1,071 ms
59,392 KB
testcase_06 AC 1,046 ms
59,520 KB
testcase_07 AC 339 ms
29,824 KB
testcase_08 AC 1,229 ms
82,560 KB
testcase_09 AC 128 ms
16,896 KB
testcase_10 AC 561 ms
42,880 KB
testcase_11 AC 386 ms
32,640 KB
testcase_12 AC 463 ms
24,064 KB
testcase_13 AC 1,068 ms
48,896 KB
testcase_14 AC 1,151 ms
55,808 KB
testcase_15 AC 1,336 ms
62,592 KB
testcase_16 AC 768 ms
35,712 KB
testcase_17 AC 1,489 ms
66,816 KB
testcase_18 AC 571 ms
29,824 KB
testcase_19 AC 1,310 ms
64,640 KB
testcase_20 AC 366 ms
25,984 KB
testcase_21 AC 733 ms
33,408 KB
testcase_22 AC 1,257 ms
58,624 KB
testcase_23 AC 48 ms
11,264 KB
testcase_24 AC 51 ms
11,520 KB
testcase_25 AC 423 ms
22,912 KB
testcase_26 AC 749 ms
40,648 KB
testcase_27 AC 817 ms
39,936 KB
testcase_28 AC 1,352 ms
58,620 KB
testcase_29 AC 227 ms
17,536 KB
testcase_30 AC 1,327 ms
63,744 KB
testcase_31 AC 906 ms
49,536 KB
testcase_32 AC 593 ms
36,352 KB
testcase_33 AC 1,250 ms
62,464 KB
testcase_34 AC 566 ms
30,208 KB
testcase_35 AC 1,375 ms
64,388 KB
testcase_36 AC 38 ms
11,008 KB
testcase_37 AC 44 ms
11,392 KB
testcase_38 AC 38 ms
11,264 KB
testcase_39 AC 43 ms
11,520 KB
testcase_40 AC 35 ms
10,880 KB
testcase_41 AC 1,724 ms
82,304 KB
testcase_42 AC 503 ms
32,896 KB
testcase_43 AC 907 ms
48,640 KB
testcase_44 AC 316 ms
24,704 KB
testcase_45 AC 872 ms
47,872 KB
testcase_46 AC 30 ms
10,880 KB
testcase_47 AC 30 ms
10,752 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 int((((a1-b1)**2+(a2-b2)**2)**0.5)*10**9)

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*10**6+q-1)
  edge[q-1].append(dis*10**6+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)
    minedge_cost=minedge//(10**6)
    minedge_v=minedge%(10**6)
    if not used[minedge_v]:
      continue
    d[minedge_v] = minedge_cost
    used[minedge_v] = False
    for e in edge[minedge_v]:
      e_cost=e//(10**6)
      e_v=e%(10**6)
      if used[e_v]:
        heapq.heappush(edgelist,e+minedge_cost*10**6)
  return d
print(dijkstra_heap(x-1)[y-1]/(10**9))
0