結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー hedwig100hedwig100
提出日時 2020-05-29 21:52:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,065 ms / 2,000 ms
コード長 982 bytes
コンパイル時間 441 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 143,220 KB
最終ジャッジ日時 2024-11-06 04:04:49
合計ジャッジ時間 24,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,572 KB
testcase_01 AC 40 ms
54,380 KB
testcase_02 AC 594 ms
111,120 KB
testcase_03 AC 741 ms
141,436 KB
testcase_04 AC 743 ms
140,832 KB
testcase_05 AC 549 ms
136,928 KB
testcase_06 AC 555 ms
137,300 KB
testcase_07 AC 214 ms
94,248 KB
testcase_08 AC 511 ms
142,556 KB
testcase_09 AC 149 ms
83,496 KB
testcase_10 AC 284 ms
105,540 KB
testcase_11 AC 235 ms
97,072 KB
testcase_12 AC 183 ms
87,148 KB
testcase_13 AC 740 ms
121,012 KB
testcase_14 AC 796 ms
125,388 KB
testcase_15 AC 910 ms
135,284 KB
testcase_16 AC 487 ms
104,448 KB
testcase_17 AC 1,023 ms
139,856 KB
testcase_18 AC 395 ms
96,768 KB
testcase_19 AC 921 ms
136,880 KB
testcase_20 AC 344 ms
93,100 KB
testcase_21 AC 445 ms
101,356 KB
testcase_22 AC 865 ms
130,316 KB
testcase_23 AC 74 ms
74,884 KB
testcase_24 AC 85 ms
77,512 KB
testcase_25 AC 162 ms
86,984 KB
testcase_26 AC 520 ms
108,552 KB
testcase_27 AC 573 ms
109,220 KB
testcase_28 AC 892 ms
131,628 KB
testcase_29 AC 211 ms
84,076 KB
testcase_30 AC 941 ms
134,960 KB
testcase_31 AC 639 ms
119,080 KB
testcase_32 AC 485 ms
105,076 KB
testcase_33 AC 972 ms
136,204 KB
testcase_34 AC 459 ms
97,712 KB
testcase_35 AC 891 ms
135,704 KB
testcase_36 AC 93 ms
77,364 KB
testcase_37 AC 139 ms
78,620 KB
testcase_38 AC 102 ms
77,348 KB
testcase_39 AC 137 ms
78,504 KB
testcase_40 AC 64 ms
66,012 KB
testcase_41 AC 1,065 ms
143,220 KB
testcase_42 AC 374 ms
98,248 KB
testcase_43 AC 584 ms
112,140 KB
testcase_44 AC 292 ms
91,092 KB
testcase_45 AC 605 ms
111,524 KB
testcase_46 AC 40 ms
53,524 KB
testcase_47 AC 39 ms
53,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15
from heapq import heapify,heappop,heappush

def dijkstra(G,s = 0): #sを始点とした最短経を求める
    n = len(G)
    dist = [INF] * n
    dist[s] = 0
    q = [(0,s)]
    while q:
        d,v = heappop(q)
        if dist[v] < d:
            continue
        for e,cost in G[v]:
            if dist[e] > dist[v] + cost:
                dist[e] = dist[v] + cost
                heappush(q,(dist[e],e))
    return dist
N,M = map(int,input().split())
X,Y = map(int,input().split())
point = [list(map(int,input().split())) for _ in range(N)]
dist = lambda i,j:((point[i][0] - point[j][0])*(point[i][0] - point[j][0]) + (point[i][1] - point[j][1])*(point[i][1] - point[j][1]))**0.5
G = [[] for _ in range(N)]
for _ in range(M):
    x,y = map(int,input().split())
    x -= 1
    y -= 1
    d = dist(x,y)
    G[x].append((y,d))
    G[y].append((x,d))
dist = dijkstra(G,X - 1)
ans = dist[Y - 1]
print(ans)
0