結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー FukumotoFukumoto
提出日時 2020-06-08 19:49:00
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,805 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 119,936 KB
最終ジャッジ日時 2024-12-26 05:14:28
合計ジャッジ時間 37,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
10,624 KB
testcase_01 AC 37 ms
10,880 KB
testcase_02 AC 691 ms
62,336 KB
testcase_03 AC 1,301 ms
103,168 KB
testcase_04 AC 1,612 ms
101,632 KB
testcase_05 AC 1,185 ms
94,464 KB
testcase_06 AC 1,217 ms
94,464 KB
testcase_07 AC 299 ms
39,424 KB
testcase_08 AC 1,112 ms
119,936 KB
testcase_09 AC 120 ms
19,968 KB
testcase_10 AC 485 ms
59,264 KB
testcase_11 AC 348 ms
44,160 KB
testcase_12 AC 324 ms
33,536 KB
testcase_13 AC 1,107 ms
76,032 KB
testcase_14 AC 1,113 ms
85,248 KB
testcase_15 AC 1,451 ms
96,256 KB
testcase_16 AC 727 ms
55,296 KB
testcase_17 AC 1,743 ms
101,760 KB
testcase_18 AC 619 ms
45,184 KB
testcase_19 AC 1,336 ms
95,488 KB
testcase_20 AC 422 ms
35,072 KB
testcase_21 AC 792 ms
53,760 KB
testcase_22 AC 1,362 ms
90,624 KB
testcase_23 AC 53 ms
11,776 KB
testcase_24 AC 49 ms
11,776 KB
testcase_25 AC 296 ms
31,488 KB
testcase_26 AC 656 ms
55,112 KB
testcase_27 AC 688 ms
58,880 KB
testcase_28 AC 1,175 ms
88,320 KB
testcase_29 AC 250 ms
23,936 KB
testcase_30 AC 1,186 ms
93,772 KB
testcase_31 AC 994 ms
70,508 KB
testcase_32 AC 520 ms
47,744 KB
testcase_33 AC 1,372 ms
95,360 KB
testcase_34 AC 590 ms
45,184 KB
testcase_35 AC 1,131 ms
91,392 KB
testcase_36 AC 43 ms
11,008 KB
testcase_37 AC 46 ms
11,392 KB
testcase_38 AC 44 ms
11,520 KB
testcase_39 AC 47 ms
11,520 KB
testcase_40 AC 39 ms
10,880 KB
testcase_41 AC 1,805 ms
118,272 KB
testcase_42 AC 498 ms
43,520 KB
testcase_43 AC 784 ms
66,176 KB
testcase_44 AC 264 ms
30,720 KB
testcase_45 AC 878 ms
66,560 KB
testcase_46 AC 36 ms
10,624 KB
testcase_47 AC 36 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify
import sys
input = sys.stdin.readline

def main():
    N, M = list(map(int, input().split()))
    X, Y = list(map(int, input().split()))
    X -= 1; Y -= 1
    pq = [list(map(int, input().split())) for i in range(N)]
    g = [[] for i in range(N)]
    INF = float('inf')
    dist = [INF for i in range(N)]
    visited = [False] * N

    for i in range(M):
        p, q = list(map(int, input().split()))
        p -= 1; q -= 1

        px, py = pq[p]
        qx, qy = pq[q]

        d = ((px-qx)**2 + (py-qy)**2) **0.5
        g[p].append((d, q))
        g[q].append((d, p))

    q = g[X]
    heapify(q)
    dist[X] = 0
    visited[X] = True

    while q:
        c, v = heappop(q)

        if visited[v]: continue
        visited[v] = True
        dist[v] = c
        if v == Y:
            print(c)
            break

        for d, u in g[v]:
            if not visited[u]: heappush(q, (c+d, u))

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