結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー takakintakakin
提出日時 2020-06-03 23:58:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 868 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-11-26 10:18:09
合計ジャッジ時間 51,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 1,087 ms
61,952 KB
testcase_03 AC 1,830 ms
108,800 KB
testcase_04 AC 1,783 ms
108,672 KB
testcase_05 AC 1,437 ms
101,248 KB
testcase_06 AC 1,438 ms
101,248 KB
testcase_07 AC 327 ms
38,016 KB
testcase_08 AC 1,276 ms
114,048 KB
testcase_09 AC 120 ms
19,456 KB
testcase_10 AC 533 ms
56,832 KB
testcase_11 AC 366 ms
42,112 KB
testcase_12 AC 565 ms
42,368 KB
testcase_13 AC 1,703 ms
78,592 KB
testcase_14 AC 1,764 ms
85,888 KB
testcase_15 TLE -
testcase_16 AC 1,101 ms
59,264 KB
testcase_17 TLE -
testcase_18 AC 817 ms
48,384 KB
testcase_19 TLE -
testcase_20 AC 439 ms
35,200 KB
testcase_21 AC 1,115 ms
58,496 KB
testcase_22 TLE -
testcase_23 AC 46 ms
12,032 KB
testcase_24 AC 49 ms
12,160 KB
testcase_25 AC 494 ms
39,040 KB
testcase_26 AC 954 ms
59,824 KB
testcase_27 AC 1,124 ms
62,976 KB
testcase_28 TLE -
testcase_29 AC 261 ms
25,216 KB
testcase_30 TLE -
testcase_31 AC 1,277 ms
69,808 KB
testcase_32 AC 760 ms
51,456 KB
testcase_33 TLE -
testcase_34 AC 771 ms
47,744 KB
testcase_35 TLE -
testcase_36 AC 36 ms
11,392 KB
testcase_37 AC 39 ms
11,904 KB
testcase_38 AC 38 ms
11,520 KB
testcase_39 AC 40 ms
11,648 KB
testcase_40 AC 34 ms
11,136 KB
testcase_41 TLE -
testcase_42 AC 561 ms
42,368 KB
testcase_43 AC 1,188 ms
65,024 KB
testcase_44 AC 323 ms
30,592 KB
testcase_45 AC 1,147 ms
63,744 KB
testcase_46 AC 27 ms
10,752 KB
testcase_47 AC 27 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 ((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