結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー NagisaNagisa
提出日時 2020-05-29 22:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 915 ms / 2,000 ms
コード長 1,013 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 151,452 KB
最終ジャッジ日時 2024-11-06 06:32:30
合計ジャッジ時間 20,733 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,752 KB
testcase_01 AC 40 ms
54,296 KB
testcase_02 AC 489 ms
113,876 KB
testcase_03 AC 632 ms
146,140 KB
testcase_04 AC 632 ms
145,740 KB
testcase_05 AC 450 ms
147,264 KB
testcase_06 AC 455 ms
147,264 KB
testcase_07 AC 139 ms
92,456 KB
testcase_08 AC 339 ms
150,232 KB
testcase_09 AC 93 ms
82,352 KB
testcase_10 AC 188 ms
107,612 KB
testcase_11 AC 153 ms
97,116 KB
testcase_12 AC 126 ms
88,640 KB
testcase_13 AC 624 ms
122,512 KB
testcase_14 AC 693 ms
128,348 KB
testcase_15 AC 798 ms
139,768 KB
testcase_16 AC 405 ms
104,848 KB
testcase_17 AC 845 ms
142,924 KB
testcase_18 AC 324 ms
97,632 KB
testcase_19 AC 788 ms
141,592 KB
testcase_20 AC 273 ms
92,764 KB
testcase_21 AC 361 ms
101,672 KB
testcase_22 AC 763 ms
133,428 KB
testcase_23 AC 56 ms
66,744 KB
testcase_24 AC 63 ms
69,184 KB
testcase_25 AC 119 ms
88,228 KB
testcase_26 AC 442 ms
110,692 KB
testcase_27 AC 490 ms
109,936 KB
testcase_28 AC 766 ms
133,220 KB
testcase_29 AC 165 ms
83,976 KB
testcase_30 AC 799 ms
138,604 KB
testcase_31 AC 548 ms
120,964 KB
testcase_32 AC 410 ms
104,920 KB
testcase_33 AC 915 ms
139,432 KB
testcase_34 AC 349 ms
98,476 KB
testcase_35 AC 804 ms
139,400 KB
testcase_36 AC 69 ms
72,004 KB
testcase_37 AC 102 ms
77,836 KB
testcase_38 AC 71 ms
72,488 KB
testcase_39 AC 102 ms
77,592 KB
testcase_40 AC 50 ms
63,064 KB
testcase_41 AC 898 ms
151,452 KB
testcase_42 AC 315 ms
98,912 KB
testcase_43 AC 503 ms
115,564 KB
testcase_44 AC 234 ms
91,052 KB
testcase_45 AC 490 ms
113,968 KB
testcase_46 AC 39 ms
53,832 KB
testcase_47 AC 40 ms
52,984 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