結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー stngstng
提出日時 2022-08-19 17:28:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,109 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 170,192 KB
最終ジャッジ日時 2024-10-08 01:10:19
合計ジャッジ時間 27,320 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
52,864 KB
testcase_02 AC 595 ms
123,144 KB
testcase_03 AC 842 ms
170,192 KB
testcase_04 AC 791 ms
169,800 KB
testcase_05 AC 607 ms
169,520 KB
testcase_06 AC 622 ms
169,628 KB
testcase_07 AC 217 ms
100,864 KB
testcase_08 AC 532 ms
168,320 KB
testcase_09 AC 136 ms
80,256 KB
testcase_10 AC 299 ms
117,760 KB
testcase_11 AC 235 ms
104,448 KB
testcase_12 AC 228 ms
103,296 KB
testcase_13 AC 745 ms
142,124 KB
testcase_14 AC 853 ms
148,560 KB
testcase_15 AC 972 ms
158,852 KB
testcase_16 AC 535 ms
121,984 KB
testcase_17 AC 1,039 ms
167,928 KB
testcase_18 AC 426 ms
110,156 KB
testcase_19 AC 942 ms
160,044 KB
testcase_20 AC 340 ms
100,724 KB
testcase_21 AC 436 ms
119,272 KB
testcase_22 AC 887 ms
153,372 KB
testcase_23 AC 84 ms
77,056 KB
testcase_24 AC 86 ms
77,316 KB
testcase_25 AC 203 ms
98,560 KB
testcase_26 AC 575 ms
123,852 KB
testcase_27 AC 604 ms
126,436 KB
testcase_28 AC 962 ms
157,892 KB
testcase_29 AC 219 ms
89,344 KB
testcase_30 AC 952 ms
158,672 KB
testcase_31 AC 704 ms
135,092 KB
testcase_32 AC 530 ms
116,084 KB
testcase_33 AC 1,058 ms
158,892 KB
testcase_34 AC 445 ms
110,928 KB
testcase_35 AC 979 ms
162,592 KB
testcase_36 AC 99 ms
77,184 KB
testcase_37 AC 145 ms
78,464 KB
testcase_38 AC 109 ms
77,312 KB
testcase_39 AC 150 ms
78,720 KB
testcase_40 AC 64 ms
67,328 KB
testcase_41 AC 1,109 ms
169,216 KB
testcase_42 AC 403 ms
105,472 KB
testcase_43 AC 607 ms
125,388 KB
testcase_44 AC 290 ms
95,360 KB
testcase_45 AC 597 ms
124,672 KB
testcase_46 AC 38 ms
52,224 KB
testcase_47 AC 39 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
INF = 10 ** 9
def dijkstra(s, n): # (始点, ノード数)
    dist = [INF] * n
    hq = [(0, s)] # (distance, node)
    dist[s] = 0
    seen = [False] * n # ノードが確定済みかどうか
    while hq:
        tmp = heappop(hq) # ノードを pop する
        v = tmp[1]
        c = tmp[0]
        seen[v] = True
        if dist[v] != c:
            continue
        for to, cost in adj[v]: # ノード v に隣接しているノードに対して
            if seen[to] == False and dist[v] + cost < dist[to]:
                dist[to] = dist[v] + cost
                heappush(hq, (dist[to], to))
    return dist

n,m = map(int,input().split())
x,y = map(int,input().split())
pq = [[int(i) for i in input().split()] for j in range(n)]
PQ = [[int(i) for i in input().split()] for j in range(m)]

adj = [[] for i in range(n)]

for i in range(m):
    P,Q = PQ[i]
    P -= 1
    Q -= 1
    lp = pq[P]
    lq = pq[Q]
    tmp = ((lp[0]-lq[0])**2+(lp[1]-lq[1])**2)**0.5
    adj[P].append([Q,tmp])
    adj[Q].append([P,tmp])

x -= 1
y -= 1
di = dijkstra(x,n)
print(di[y])
0