結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー O2MTO2MT
提出日時 2020-08-31 14:21:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,008 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 112,512 KB
最終ジャッジ日時 2024-11-15 22:39:17
合計ジャッジ時間 51,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 1,240 ms
61,312 KB
testcase_03 AC 1,807 ms
100,004 KB
testcase_04 AC 1,771 ms
98,956 KB
testcase_05 AC 1,639 ms
91,528 KB
testcase_06 AC 1,683 ms
91,392 KB
testcase_07 AC 475 ms
37,632 KB
testcase_08 AC 1,761 ms
112,512 KB
testcase_09 AC 171 ms
19,584 KB
testcase_10 AC 792 ms
56,192 KB
testcase_11 AC 540 ms
41,728 KB
testcase_12 AC 469 ms
31,232 KB
testcase_13 AC 1,475 ms
67,584 KB
testcase_14 AC 1,682 ms
77,056 KB
testcase_15 AC 1,918 ms
88,448 KB
testcase_16 AC 984 ms
48,896 KB
testcase_17 TLE -
testcase_18 AC 731 ms
38,656 KB
testcase_19 AC 1,968 ms
88,960 KB
testcase_20 AC 514 ms
33,152 KB
testcase_21 AC 887 ms
44,544 KB
testcase_22 AC 1,831 ms
82,944 KB
testcase_23 AC 48 ms
11,520 KB
testcase_24 AC 53 ms
11,776 KB
testcase_25 AC 416 ms
28,928 KB
testcase_26 AC 1,065 ms
53,696 KB
testcase_27 AC 1,101 ms
54,528 KB
testcase_28 AC 1,845 ms
82,400 KB
testcase_29 AC 247 ms
20,864 KB
testcase_30 AC 1,952 ms
87,808 KB
testcase_31 AC 1,353 ms
66,504 KB
testcase_32 AC 877 ms
47,616 KB
testcase_33 AC 1,936 ms
89,076 KB
testcase_34 AC 738 ms
40,064 KB
testcase_35 TLE -
testcase_36 AC 40 ms
11,264 KB
testcase_37 AC 47 ms
11,776 KB
testcase_38 AC 42 ms
11,264 KB
testcase_39 AC 46 ms
11,776 KB
testcase_40 AC 34 ms
11,008 KB
testcase_41 TLE -
testcase_42 AC 831 ms
41,984 KB
testcase_43 AC 1,388 ms
64,384 KB
testcase_44 AC 456 ms
30,592 KB
testcase_45 AC 1,247 ms
63,104 KB
testcase_46 AC 29 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt
import heapq

def dijkstra(s, h, graph):
    n = len(graph)-1
    dist = [float("inf") for i in range(n+1)]
    dist[s] = 0
    pq = []
    heapq.heapify(pq)
    heapq.heappush(pq, (0, s))
    while pq:
        mini_dis, node = heapq.heappop(pq)
        if dist[node] < mini_dis:
            continue
        for w, point in graph[node]:
            if dist[point] < w:
                continue
            newlen = dist[node]+w
            if newlen < dist[point]:
                heapq.heappush(pq, (newlen, point))
                dist[point] = newlen
    return dist

N,M = map(int,input().split())
X,Y = map(int,input().split())
l = [[] for _ in range(N+1)] 
d =  [[] for _ in range(N+1)] 
for i in range(1,N+1):
  a,b = map(int,input().split())
  d[i].append(a)
  d[i].append(b)

for _ in range(M):
  a,b = map(int,input().split())
  dist = sqrt((d[a][0]-d[b][0])**2 + (d[a][1]-d[b][1])**2)
  l[a].append((dist,b))
  l[b].append((dist,a))
  
ans = dijkstra(X, Y, l)

print(ans[Y])
0