結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー NagisaNagisa
提出日時 2020-05-29 22:39:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,688 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 98 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 124,928 KB
最終ジャッジ日時 2024-11-06 06:28:47
合計ジャッジ時間 34,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 31 ms
11,008 KB
testcase_02 AC 847 ms
67,456 KB
testcase_03 AC 1,254 ms
110,140 KB
testcase_04 AC 1,231 ms
109,348 KB
testcase_05 AC 1,018 ms
101,960 KB
testcase_06 AC 1,012 ms
102,084 KB
testcase_07 AC 268 ms
40,960 KB
testcase_08 AC 1,016 ms
124,928 KB
testcase_09 AC 108 ms
20,608 KB
testcase_10 AC 440 ms
61,568 KB
testcase_11 AC 321 ms
45,568 KB
testcase_12 AC 314 ms
34,560 KB
testcase_13 AC 1,045 ms
75,136 KB
testcase_14 AC 1,156 ms
84,992 KB
testcase_15 AC 1,366 ms
97,280 KB
testcase_16 AC 693 ms
53,888 KB
testcase_17 AC 1,559 ms
103,804 KB
testcase_18 AC 521 ms
42,240 KB
testcase_19 AC 1,366 ms
98,176 KB
testcase_20 AC 362 ms
35,840 KB
testcase_21 AC 630 ms
49,408 KB
testcase_22 AC 1,265 ms
91,648 KB
testcase_23 AC 42 ms
11,776 KB
testcase_24 AC 44 ms
12,032 KB
testcase_25 AC 293 ms
32,000 KB
testcase_26 AC 731 ms
58,992 KB
testcase_27 AC 781 ms
60,416 KB
testcase_28 AC 1,358 ms
91,052 KB
testcase_29 AC 198 ms
22,528 KB
testcase_30 AC 1,377 ms
97,152 KB
testcase_31 AC 905 ms
72,948 KB
testcase_32 AC 614 ms
51,968 KB
testcase_33 AC 1,415 ms
97,792 KB
testcase_34 AC 522 ms
44,032 KB
testcase_35 AC 1,370 ms
98,304 KB
testcase_36 AC 38 ms
11,392 KB
testcase_37 AC 42 ms
11,904 KB
testcase_38 AC 39 ms
11,520 KB
testcase_39 AC 42 ms
12,032 KB
testcase_40 AC 35 ms
11,136 KB
testcase_41 AC 1,688 ms
124,288 KB
testcase_42 AC 491 ms
45,952 KB
testcase_43 AC 847 ms
71,040 KB
testcase_44 AC 300 ms
32,896 KB
testcase_45 AC 809 ms
69,632 KB
testcase_46 AC 30 ms
11,008 KB
testcase_47 AC 31 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import sqrt
from heapq import heappush, heappop
INF = 10**10
input = sys.stdin.readline
def main():
    N, M = map(int,input().split())
    X, Y = map(int,input().split())
    X -= 1
    Y -= 1
    D = []
    for _ in range(N):
        D.append(list(map(int,input().split())))
    K = [[] for _ in range(N)]
    for _ in range(M):
        P, Q = map(int,input().split())
        P -= 1
        Q -= 1
        K[P].append((Q,sqrt((D[P][0]-D[Q][0])**2+(D[P][1]-D[Q][1])**2)))
        K[Q].append((P,sqrt((D[P][0]-D[Q][0])**2+(D[P][1]-D[Q][1])**2)))
    dist = [INF] * N
    def dijkstra(N, G, s):
        que = [(0, s)]
        dist[s] = 0
        while que:
            c, v = heappop(que)
            if dist[v] < c:
                continue
            for t, cost in G[v]:
                if dist[v] + cost < dist[t]:
                    dist[t] = dist[v] + cost
                    heappush(que, (dist[t], t))
    dijkstra(N, K, X)
    print(dist[Y])
if __name__ == '__main__':
    main()
0