結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 828 ms
56,088 KB
testcase_03 AC 1,181 ms
91,912 KB
testcase_04 AC 1,176 ms
91,912 KB
testcase_05 AC 1,040 ms
91,660 KB
testcase_06 AC 1,033 ms
91,664 KB
testcase_07 AC 273 ms
36,084 KB
testcase_08 AC 963 ms
103,376 KB
testcase_09 AC 109 ms
18,912 KB
testcase_10 AC 438 ms
51,916 KB
testcase_11 AC 313 ms
39,736 KB
testcase_12 AC 287 ms
41,760 KB
testcase_13 AC 1,024 ms
63,612 KB
testcase_14 AC 1,138 ms
65,960 KB
testcase_15 AC 1,380 ms
75,056 KB
testcase_16 AC 683 ms
51,888 KB
testcase_17 AC 1,546 ms
80,768 KB
testcase_18 AC 513 ms
42,592 KB
testcase_19 AC 1,400 ms
77,440 KB
testcase_20 AC 370 ms
30,240 KB
testcase_21 AC 613 ms
53,384 KB
testcase_22 AC 1,284 ms
71,784 KB
testcase_23 AC 41 ms
12,160 KB
testcase_24 AC 44 ms
12,160 KB
testcase_25 AC 262 ms
38,452 KB
testcase_26 AC 708 ms
48,124 KB
testcase_27 AC 766 ms
51,024 KB
testcase_28 AC 1,314 ms
75,360 KB
testcase_29 AC 176 ms
24,388 KB
testcase_30 AC 1,346 ms
74,728 KB
testcase_31 AC 912 ms
55,712 KB
testcase_32 AC 603 ms
41,164 KB
testcase_33 AC 1,382 ms
75,140 KB
testcase_34 AC 515 ms
39,668 KB
testcase_35 AC 1,341 ms
77,144 KB
testcase_36 AC 37 ms
11,648 KB
testcase_37 AC 42 ms
11,776 KB
testcase_38 AC 38 ms
11,392 KB
testcase_39 AC 43 ms
11,904 KB
testcase_40 AC 34 ms
11,136 KB
testcase_41 AC 1,626 ms
102,632 KB
testcase_42 AC 488 ms
39,904 KB
testcase_43 AC 846 ms
59,348 KB
testcase_44 AC 318 ms
28,628 KB
testcase_45 AC 809 ms
58,300 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from heapq import heappop, heappush

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N, M = map(int, readline().split())
S, T = map(int, readline().split())
X = [complex(0, 0)] * (N + 1)
for i in range(1, N + 1):
    p, q = map(int, readline().split())
    X[i] = complex(p, q)
G = [[] for _ in range(N + 1)]
m = map(int, read().split())
for p, q in zip(m, m):
    d = abs(X[p] - X[q])
    G[p].append((q, d))
    G[q].append((p, d))

INF = 10.0**18
dist = [INF] * (N+1)
q = [(0, S)]
dist[S] = 0
while q:
    dv, v = heappop(q)
    if dv != dist[v]:
        continue
    for w, d in G[v]:
        dw = dv + d
        if dist[w] > dw:
            dist[w] = dw
            heappush(q, (dw, w))

print(dist[T])
0