結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tamatotamato
提出日時 2020-05-29 21:36:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 873 ms / 2,000 ms
コード長 1,247 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 130,436 KB
最終ジャッジ日時 2024-11-06 02:50:54
合計ジャッジ時間 21,037 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,484 KB
testcase_01 AC 40 ms
54,196 KB
testcase_02 AC 497 ms
101,724 KB
testcase_03 AC 664 ms
130,436 KB
testcase_04 AC 650 ms
128,992 KB
testcase_05 AC 462 ms
129,428 KB
testcase_06 AC 463 ms
129,512 KB
testcase_07 AC 131 ms
86,584 KB
testcase_08 AC 342 ms
126,412 KB
testcase_09 AC 88 ms
79,068 KB
testcase_10 AC 182 ms
94,836 KB
testcase_11 AC 140 ms
87,688 KB
testcase_12 AC 172 ms
88,316 KB
testcase_13 AC 664 ms
112,408 KB
testcase_14 AC 695 ms
117,292 KB
testcase_15 AC 799 ms
123,160 KB
testcase_16 AC 454 ms
101,068 KB
testcase_17 AC 870 ms
127,932 KB
testcase_18 AC 338 ms
93,328 KB
testcase_19 AC 807 ms
125,392 KB
testcase_20 AC 267 ms
89,396 KB
testcase_21 AC 397 ms
98,324 KB
testcase_22 AC 770 ms
119,764 KB
testcase_23 AC 53 ms
65,908 KB
testcase_24 AC 61 ms
68,296 KB
testcase_25 AC 153 ms
83,864 KB
testcase_26 AC 449 ms
103,424 KB
testcase_27 AC 506 ms
102,884 KB
testcase_28 AC 813 ms
119,912 KB
testcase_29 AC 179 ms
82,932 KB
testcase_30 AC 782 ms
123,040 KB
testcase_31 AC 544 ms
110,496 KB
testcase_32 AC 403 ms
99,304 KB
testcase_33 AC 873 ms
124,640 KB
testcase_34 AC 372 ms
94,016 KB
testcase_35 AC 787 ms
125,180 KB
testcase_36 AC 66 ms
70,232 KB
testcase_37 AC 102 ms
77,744 KB
testcase_38 AC 70 ms
71,240 KB
testcase_39 AC 98 ms
77,408 KB
testcase_40 AC 48 ms
61,944 KB
testcase_41 AC 862 ms
127,732 KB
testcase_42 AC 301 ms
92,156 KB
testcase_43 AC 472 ms
103,512 KB
testcase_44 AC 220 ms
86,820 KB
testcase_45 AC 449 ms
102,316 KB
testcase_46 AC 39 ms
53,256 KB
testcase_47 AC 40 ms
53,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    import heapq
    from math import hypot
    input = sys.stdin.buffer.readline

    def dijkstra(adj, start):
        # adj: [[to, cost] * vertices], 0th index must be empty
        inf = float("inf")
        dist = [inf] * len(adj)
        dist[start] = 0
        q = []
        heapq.heappush(q, (0, start))
        while q:
            min_dist, v_from = heapq.heappop(q)
            if min_dist > dist[v_from]:
                continue
            v_tos = adj[v_from]
            for v_to, cost in v_tos:
                if min_dist + cost < dist[v_to]:
                    dist[v_to] = min_dist + cost
                    heapq.heappush(q, (dist[v_to], v_to))
        return dist

    N, M = map(int, input().split())
    s, t = map(int, input().split())
    X = []
    Y = []
    for _ in range(N):
        p, q = map(int, input().split())
        X.append(p)
        Y.append(q)
    adj = [[] for _ in range(N+1)]
    for _ in range(M):
        i, j = map(int, input().split())
        d = hypot(X[i-1] - X[j-1], Y[i-1] - Y[j-1])
        adj[i].append((j, d))
        adj[j].append((i, d))

    dist = dijkstra(adj, s)
    print(dist[t])


if __name__ == '__main__':
    main()
0