結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ttrttr
提出日時 2020-05-29 21:51:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 774 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 114,048 KB
最終ジャッジ日時 2024-11-06 03:57:09
合計ジャッジ時間 56,710 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 1,319 ms
61,952 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,799 ms
99,328 KB
testcase_06 AC 1,799 ms
99,200 KB
testcase_07 AC 493 ms
38,144 KB
testcase_08 AC 1,830 ms
114,048 KB
testcase_09 AC 184 ms
19,712 KB
testcase_10 AC 807 ms
56,832 KB
testcase_11 AC 574 ms
42,240 KB
testcase_12 AC 732 ms
38,528 KB
testcase_13 AC 1,811 ms
73,856 KB
testcase_14 AC 1,993 ms
82,304 KB
testcase_15 TLE -
testcase_16 AC 1,315 ms
55,168 KB
testcase_17 TLE -
testcase_18 AC 958 ms
44,800 KB
testcase_19 TLE -
testcase_20 AC 626 ms
34,304 KB
testcase_21 AC 1,274 ms
53,376 KB
testcase_22 TLE -
testcase_23 AC 55 ms
12,032 KB
testcase_24 AC 63 ms
12,288 KB
testcase_25 AC 639 ms
35,328 KB
testcase_26 AC 1,219 ms
57,420 KB
testcase_27 AC 1,344 ms
59,392 KB
testcase_28 TLE -
testcase_29 AC 355 ms
23,808 KB
testcase_30 TLE -
testcase_31 AC 1,454 ms
67,744 KB
testcase_32 AC 980 ms
49,920 KB
testcase_33 TLE -
testcase_34 AC 952 ms
44,672 KB
testcase_35 TLE -
testcase_36 AC 45 ms
11,392 KB
testcase_37 AC 51 ms
11,904 KB
testcase_38 AC 45 ms
11,520 KB
testcase_39 AC 50 ms
11,904 KB
testcase_40 AC 37 ms
11,264 KB
testcase_41 TLE -
testcase_42 AC 770 ms
42,624 KB
testcase_43 AC 1,370 ms
65,280 KB
testcase_44 AC 487 ms
30,976 KB
testcase_45 AC 1,348 ms
64,000 KB
testcase_46 AC 32 ms
11,008 KB
testcase_47 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int, input().split())
X,Y = map(int, input().split())
L = [[int(l) for l in input().split()] for _ in range(N)]
E = [[] for _ in range(N)]
for _ in range(M):
    p,q = map(int, input().split())
    p -= 1
    q -= 1
    d = ((L[p][0]-L[q][0])**2 + (L[p][1]-L[q][1])**2)**0.5
    E[p].append((q, d))
    E[q].append((p, d))

def dijkstra(s):
    used = [0]*N
    inf = 10**10
    d = [inf]*N
    h = [(0, s)]
    while h:
        temp = heapq.heappop(h)
        u = temp[1]
        r = temp[0]
        if used[u] == 1:
            continue
        d[u] = r
        used[u] = 1
        for e in E[u]:
            if used[e[0]] == 1:
                continue
            heapq.heappush(h, (r+e[1], e[0]))
    return d[Y-1]

ans = dijkstra(X-1)
print(ans)
0