結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー Alex WiceAlex Wice
提出日時 2020-05-29 21:35:07
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,465 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 76,936 KB
実行使用メモリ 195,348 KB
最終ジャッジ日時 2024-11-06 02:46:20
合計ジャッジ時間 32,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
77,572 KB
testcase_01 AC 87 ms
77,564 KB
testcase_02 AC 839 ms
138,304 KB
testcase_03 AC 1,109 ms
176,492 KB
testcase_04 AC 1,065 ms
177,136 KB
testcase_05 AC 818 ms
177,208 KB
testcase_06 AC 787 ms
177,204 KB
testcase_07 AC 231 ms
111,872 KB
testcase_08 AC 491 ms
188,984 KB
testcase_09 AC 159 ms
88,332 KB
testcase_10 AC 292 ms
131,800 KB
testcase_11 AC 248 ms
117,960 KB
testcase_12 AC 199 ms
94,584 KB
testcase_13 AC 890 ms
138,824 KB
testcase_14 AC 1,083 ms
151,996 KB
testcase_15 AC 1,308 ms
165,568 KB
testcase_16 AC 613 ms
116,300 KB
testcase_17 AC 1,307 ms
166,764 KB
testcase_18 AC 433 ms
105,556 KB
testcase_19 AC 1,234 ms
166,976 KB
testcase_20 AC 409 ms
103,936 KB
testcase_21 AC 469 ms
110,228 KB
testcase_22 AC 1,205 ms
160,440 KB
testcase_23 AC 106 ms
79,888 KB
testcase_24 AC 115 ms
80,400 KB
testcase_25 AC 190 ms
91,816 KB
testcase_26 AC 656 ms
127,932 KB
testcase_27 AC 706 ms
124,984 KB
testcase_28 AC 1,190 ms
152,236 KB
testcase_29 AC 245 ms
88,464 KB
testcase_30 AC 1,313 ms
163,296 KB
testcase_31 AC 857 ms
142,236 KB
testcase_32 AC 622 ms
120,660 KB
testcase_33 AC 1,465 ms
165,852 KB
testcase_34 AC 488 ms
107,672 KB
testcase_35 AC 1,185 ms
164,012 KB
testcase_36 AC 126 ms
80,700 KB
testcase_37 AC 166 ms
81,864 KB
testcase_38 AC 129 ms
81,320 KB
testcase_39 AC 167 ms
81,680 KB
testcase_40 AC 101 ms
79,892 KB
testcase_41 AC 1,197 ms
195,348 KB
testcase_42 AC 446 ms
114,788 KB
testcase_43 AC 715 ms
139,600 KB
testcase_44 AC 345 ms
100,620 KB
testcase_45 AC 663 ms
136,408 KB
testcase_46 AC 85 ms
77,736 KB
testcase_47 AC 84 ms
77,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

FAST_IO = 1
if FAST_IO:
    import io, sys, atexit
    rr = iter(sys.stdin.read().splitlines()).next
    sys.stdout = _OUTPUT_BUFFER = io.BytesIO()
    @atexit.register
    def write():
        sys.__stdout__.write(_OUTPUT_BUFFER.getvalue())
else:
    rr = raw_input
rri = lambda: int(rr())
rrm = lambda: map(int, rr().split())

####
from collections import defaultdict as ddic
import heapq

def solve(N,M,X,Y,A,B):
    # A: powerpole locations
    # B: wires
    # Shortest path X to Y
    graph = ddic(list)
    for u, v in B:
        graph[u].append(v)
        graph[v].append(u)
    def dist_2d(u, v):
        x1, y1 = A[u - 1]
        x2, y2 = A[v - 1]
        return ((x1-x2)**2 + (y1-y2)**2)**0.5

    INF = float('inf')
    dist = ddic(lambda: INF)
    dist[X] = 0
    pq = [[0, X]]
    while pq:
        d, node = heapq.heappop(pq)
        if d > dist[node]: continue
        for nei in graph[node]:
            w = dist_2d(node, nei)
            d2 = d + w
            if d2 < dist[nei]:
                dist[nei] = d2
                heapq.heappush(pq, [d2, nei])
    return dist[Y]

    
    
N,M = rrm()
X,Y = rrm()
A = [rrm()  for _ in xrange(N)]
B = [rrm() for _ in xrange(M)]
print solve(N, M, X, Y, A, B)
0