結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー FukumotoFukumoto
提出日時 2020-06-08 19:49:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,522 ms / 2,000 ms
コード長 985 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 120,064 KB
最終ジャッジ日時 2024-06-07 20:14:02
合計ジャッジ時間 33,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 617 ms
62,464 KB
testcase_03 AC 1,172 ms
103,168 KB
testcase_04 AC 1,425 ms
101,888 KB
testcase_05 AC 982 ms
94,464 KB
testcase_06 AC 1,024 ms
94,464 KB
testcase_07 AC 252 ms
39,808 KB
testcase_08 AC 935 ms
120,064 KB
testcase_09 AC 98 ms
20,096 KB
testcase_10 AC 407 ms
59,392 KB
testcase_11 AC 297 ms
44,032 KB
testcase_12 AC 272 ms
33,792 KB
testcase_13 AC 975 ms
76,032 KB
testcase_14 AC 962 ms
85,376 KB
testcase_15 AC 1,222 ms
96,384 KB
testcase_16 AC 609 ms
55,552 KB
testcase_17 AC 1,513 ms
102,016 KB
testcase_18 AC 519 ms
45,568 KB
testcase_19 AC 1,125 ms
95,744 KB
testcase_20 AC 365 ms
35,456 KB
testcase_21 AC 710 ms
53,760 KB
testcase_22 AC 1,206 ms
90,752 KB
testcase_23 AC 45 ms
11,776 KB
testcase_24 AC 46 ms
11,904 KB
testcase_25 AC 251 ms
31,744 KB
testcase_26 AC 551 ms
55,504 KB
testcase_27 AC 593 ms
59,008 KB
testcase_28 AC 1,081 ms
88,432 KB
testcase_29 AC 221 ms
23,808 KB
testcase_30 AC 1,217 ms
93,896 KB
testcase_31 AC 848 ms
70,528 KB
testcase_32 AC 424 ms
47,872 KB
testcase_33 AC 1,229 ms
95,616 KB
testcase_34 AC 518 ms
45,440 KB
testcase_35 AC 952 ms
91,540 KB
testcase_36 AC 36 ms
11,264 KB
testcase_37 AC 40 ms
11,648 KB
testcase_38 AC 38 ms
11,392 KB
testcase_39 AC 38 ms
11,648 KB
testcase_40 AC 34 ms
11,008 KB
testcase_41 AC 1,522 ms
118,400 KB
testcase_42 AC 437 ms
43,520 KB
testcase_43 AC 693 ms
66,304 KB
testcase_44 AC 241 ms
30,848 KB
testcase_45 AC 794 ms
66,944 KB
testcase_46 AC 32 ms
10,752 KB
testcase_47 AC 31 ms
10,880 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