結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー SalmonizeSalmonize
提出日時 2020-05-29 21:40:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 883 ms / 2,000 ms
コード長 1,058 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 138,920 KB
最終ジャッジ日時 2024-11-06 03:01:39
合計ジャッジ時間 20,480 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,944 KB
testcase_01 AC 40 ms
54,384 KB
testcase_02 AC 485 ms
107,584 KB
testcase_03 AC 591 ms
138,564 KB
testcase_04 AC 587 ms
138,920 KB
testcase_05 AC 404 ms
137,268 KB
testcase_06 AC 427 ms
137,524 KB
testcase_07 AC 139 ms
90,056 KB
testcase_08 AC 333 ms
136,760 KB
testcase_09 AC 97 ms
81,712 KB
testcase_10 AC 187 ms
103,072 KB
testcase_11 AC 149 ms
94,968 KB
testcase_12 AC 129 ms
86,920 KB
testcase_13 AC 642 ms
117,348 KB
testcase_14 AC 690 ms
123,420 KB
testcase_15 AC 788 ms
131,016 KB
testcase_16 AC 427 ms
102,452 KB
testcase_17 AC 832 ms
135,672 KB
testcase_18 AC 333 ms
95,632 KB
testcase_19 AC 785 ms
132,696 KB
testcase_20 AC 262 ms
91,060 KB
testcase_21 AC 376 ms
99,876 KB
testcase_22 AC 765 ms
127,356 KB
testcase_23 AC 54 ms
68,128 KB
testcase_24 AC 58 ms
70,148 KB
testcase_25 AC 127 ms
86,872 KB
testcase_26 AC 455 ms
106,332 KB
testcase_27 AC 505 ms
106,512 KB
testcase_28 AC 812 ms
127,128 KB
testcase_29 AC 175 ms
83,440 KB
testcase_30 AC 806 ms
130,512 KB
testcase_31 AC 579 ms
115,952 KB
testcase_32 AC 388 ms
101,988 KB
testcase_33 AC 875 ms
132,840 KB
testcase_34 AC 369 ms
96,180 KB
testcase_35 AC 790 ms
133,312 KB
testcase_36 AC 68 ms
71,636 KB
testcase_37 AC 101 ms
77,544 KB
testcase_38 AC 72 ms
72,592 KB
testcase_39 AC 98 ms
77,108 KB
testcase_40 AC 50 ms
62,044 KB
testcase_41 AC 883 ms
138,136 KB
testcase_42 AC 303 ms
95,640 KB
testcase_43 AC 489 ms
108,908 KB
testcase_44 AC 227 ms
88,776 KB
testcase_45 AC 482 ms
108,572 KB
testcase_46 AC 39 ms
53,204 KB
testcase_47 AC 39 ms
53,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, heapq as hq

readline = sys.stdin.readline

ns = lambda: readline().rstrip()
ni = lambda: int(readline().rstrip())
nm = lambda: map(int, readline().split())
nl = lambda: list(map(int, readline().split()))

def dijkstra(G, s, t=None):
    """
    G[v] = [(x1, c1), (x2, c2), ...]
    """
    dist = [-1]*len(G)
    dist[s] = 0
    q = [(0, s)]
    while q:
        d, v = hq.heappop(q)
        if d > dist[v]: continue
        for x, c in G[v]:
            if dist[x] < 0 or dist[x] > d + c:
                dist[x] = d + c
                hq.heappush(q, (d + c, x))
    if t is None:
        return dist
    else:
        return dist[t]

def solve():
    n, m = nm()
    X, Y = nm()
    X -= 1; Y -= 1
    points = [tuple(nm()) for _ in range(n)]
    G = [list() for _ in range(n)]
    for _ in range(m):
        u, v = nm()
        u -= 1; v -= 1
        p, q = points[u]
        r, s = points[v]
        c = ((p - r)**2 + (q - s)**2) ** .5
        G[u].append((v, c))
        G[v].append((u, c))
    print(dijkstra(G, X, Y))
    return

solve()
0