結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー RiburaRibura
提出日時 2020-05-29 22:21:25
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 1,271 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 126,464 KB
最終ジャッジ日時 2024-11-06 05:31:27
合計ジャッジ時間 27,839 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 1,328 ms
68,224 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,682 ms
112,896 KB
testcase_06 AC 1,624 ms
113,024 KB
testcase_07 AC 345 ms
41,472 KB
testcase_08 AC 1,502 ms
126,464 KB
testcase_09 AC 123 ms
20,864 KB
testcase_10 AC 598 ms
62,464 KB
testcase_11 AC 396 ms
46,208 KB
testcase_12 AC 669 ms
42,752 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 1,367 ms
61,696 KB
testcase_17 TLE -
testcase_18 AC 937 ms
49,920 KB
testcase_19 TLE -
testcase_20 AC 511 ms
37,632 KB
testcase_21 AC 1,370 ms
59,520 KB
testcase_22 TLE -
testcase_23 AC 50 ms
12,288 KB
testcase_24 AC 57 ms
12,544 KB
testcase_25 AC 584 ms
39,040 KB
testcase_26 AC 1,211 ms
63,868 KB
testcase_27 AC 1,383 ms
66,432 KB
testcase_28 TLE -
testcase_29 AC 290 ms
25,856 KB
testcase_30 TLE -
testcase_31 AC 1,516 ms
75,580 KB
testcase_32 AC 873 ms
55,424 KB
testcase_33 TLE -
testcase_34 AC 909 ms
49,664 KB
testcase_35 TLE -
testcase_36 AC 40 ms
11,648 KB
testcase_37 AC 43 ms
12,160 KB
testcase_38 AC 42 ms
11,776 KB
testcase_39 AC 45 ms
12,160 KB
testcase_40 AC 36 ms
11,264 KB
testcase_41 TLE -
testcase_42 AC 654 ms
46,464 KB
testcase_43 AC 1,322 ms
71,808 KB
testcase_44 AC 358 ms
33,408 KB
testcase_45 AC 1,238 ms
70,272 KB
testcase_46 AC 29 ms
11,008 KB
testcase_47 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
sys.setrecursionlimit(10 ** 7)

from math import sqrt


def dijkstra_heap(s):
    import heapq
    # 始点sから各頂点への最短距離
    d = [float("inf")] * n
    used = [True] * n  # True:未確定
    d[s] = 0
    used[s] = False
    edgelist = []
    for e in graph[s]:
        e.append(s)
        heapq.heappush(edgelist, e)
    while len(edgelist):
        minedge = heapq.heappop(edgelist)
        # まだ使われてない頂点の中から最小の距離のものを探す
        if not used[minedge[1]]:
            continue
        v = minedge[1]
        d[v] = minedge[0]
        used[v] = False
        for e in graph[v]:
            if used[e[1]]:
                heapq.heappush(edgelist, [e[0] + d[v], e[1]])
    return d


n, m = map(int, readline().split())
x, y = map(int, readline().split())
pq = [list(map(int, readline().split())) for _ in range(n)]
graph = [[] for _ in range(n)]
for i in range(m):
    p, q = map(int, readline().split())
    p -= 1
    q -= 1
    v = sqrt((pq[p][0] - pq[q][0]) ** 2 + (pq[p][1] - pq[q][1]) ** 2)
    graph[p].append([v, q])
    graph[q].append([v, p])
print(dijkstra_heap(x - 1)[y - 1])
0