結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー rlangevinrlangevin
提出日時 2023-02-05 12:16:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 1,298 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 134,972 KB
最終ジャッジ日時 2024-07-04 02:37:58
合計ジャッジ時間 16,971 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,280 KB
testcase_01 AC 38 ms
53,508 KB
testcase_02 AC 282 ms
103,548 KB
testcase_03 AC 463 ms
134,972 KB
testcase_04 AC 550 ms
134,092 KB
testcase_05 AC 379 ms
133,304 KB
testcase_06 AC 393 ms
133,312 KB
testcase_07 AC 117 ms
90,512 KB
testcase_08 AC 264 ms
129,180 KB
testcase_09 AC 80 ms
78,320 KB
testcase_10 AC 153 ms
99,532 KB
testcase_11 AC 126 ms
89,940 KB
testcase_12 AC 109 ms
88,344 KB
testcase_13 AC 434 ms
114,704 KB
testcase_14 AC 431 ms
119,420 KB
testcase_15 AC 545 ms
129,252 KB
testcase_16 AC 282 ms
101,660 KB
testcase_17 AC 655 ms
130,300 KB
testcase_18 AC 264 ms
95,424 KB
testcase_19 AC 510 ms
128,020 KB
testcase_20 AC 224 ms
90,036 KB
testcase_21 AC 268 ms
100,084 KB
testcase_22 AC 544 ms
123,512 KB
testcase_23 AC 55 ms
69,344 KB
testcase_24 AC 53 ms
68,472 KB
testcase_25 AC 106 ms
88,248 KB
testcase_26 AC 290 ms
103,572 KB
testcase_27 AC 276 ms
104,696 KB
testcase_28 AC 448 ms
123,492 KB
testcase_29 AC 139 ms
83,672 KB
testcase_30 AC 449 ms
125,424 KB
testcase_31 AC 411 ms
112,460 KB
testcase_32 AC 228 ms
98,440 KB
testcase_33 AC 603 ms
128,324 KB
testcase_34 AC 264 ms
95,428 KB
testcase_35 AC 431 ms
127,376 KB
testcase_36 AC 54 ms
68,200 KB
testcase_37 AC 76 ms
77,520 KB
testcase_38 AC 59 ms
69,076 KB
testcase_39 AC 60 ms
71,452 KB
testcase_40 AC 46 ms
62,544 KB
testcase_41 AC 676 ms
128,624 KB
testcase_42 AC 235 ms
92,924 KB
testcase_43 AC 308 ms
104,492 KB
testcase_44 AC 165 ms
87,856 KB
testcase_45 AC 386 ms
104,500 KB
testcase_46 AC 38 ms
53,952 KB
testcase_47 AC 38 ms
53,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from math import *
from heapq import heappush, heappop
inf = float('inf')


def naive_dijkstra(s, g, N):
    # ゴールがない場合はg=-1とする。

    dist = [inf] * N
    mindist = [inf] * N
    seen = [False] * N
    Q = [(0, s)]
    while Q:
        c, m = heappop(Q)
        if seen[m]:
            continue
        seen[m] = True
        dist[m] = c
        if m == g:
            return dist

        #------heapをアップデートする。--------
        for u, C in G[m]:
            if seen[u]:
                continue
            newdist = dist[m] + C

            #------------------------------------
            if newdist >= mindist[u]:
                continue
            mindist[u] = newdist
            heappush(Q, (newdist, u))
    return dist

def dist(i, j):
    return sqrt((P[i] - P[j]) ** 2 + (Q[i] - Q[j]) ** 2)

N, M = map(int, readline().split())
X, Y = map(int, readline().split())
X, Y = X - 1, Y - 1
P, Q = [0] * N, [0] * N
for i in range(N):
    P[i], Q[i] = map(int, readline().split())
    
G = [[] for i in range(N)]
for i in range(M):
    p, q = map(int, readline().split())
    p, q = p - 1, q - 1
    G[p].append((q, dist(p, q)))
    G[q].append((p, dist(p, q)))
    
D = naive_dijkstra(X, Y, N)
print(D[Y])
0