結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー Kiri8128Kiri8128
提出日時 2020-05-30 00:16:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,097 ms / 2,000 ms
コード長 913 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 152,840 KB
最終ジャッジ日時 2024-11-06 09:38:38
合計ジャッジ時間 25,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,720 KB
testcase_01 AC 40 ms
54,568 KB
testcase_02 AC 573 ms
112,944 KB
testcase_03 AC 893 ms
152,840 KB
testcase_04 AC 865 ms
152,236 KB
testcase_05 AC 649 ms
149,956 KB
testcase_06 AC 643 ms
149,948 KB
testcase_07 AC 135 ms
94,064 KB
testcase_08 AC 316 ms
143,184 KB
testcase_09 AC 87 ms
78,316 KB
testcase_10 AC 192 ms
105,872 KB
testcase_11 AC 152 ms
96,664 KB
testcase_12 AC 141 ms
94,696 KB
testcase_13 AC 747 ms
127,692 KB
testcase_14 AC 823 ms
133,672 KB
testcase_15 AC 973 ms
144,664 KB
testcase_16 AC 484 ms
110,944 KB
testcase_17 AC 1,069 ms
149,352 KB
testcase_18 AC 385 ms
101,864 KB
testcase_19 AC 961 ms
144,008 KB
testcase_20 AC 297 ms
94,500 KB
testcase_21 AC 390 ms
107,944 KB
testcase_22 AC 912 ms
137,612 KB
testcase_23 AC 57 ms
69,424 KB
testcase_24 AC 62 ms
71,244 KB
testcase_25 AC 125 ms
90,572 KB
testcase_26 AC 517 ms
113,516 KB
testcase_27 AC 531 ms
114,812 KB
testcase_28 AC 951 ms
140,944 KB
testcase_29 AC 167 ms
85,880 KB
testcase_30 AC 986 ms
142,816 KB
testcase_31 AC 667 ms
123,992 KB
testcase_32 AC 453 ms
107,400 KB
testcase_33 AC 1,097 ms
144,252 KB
testcase_34 AC 363 ms
102,324 KB
testcase_35 AC 980 ms
144,984 KB
testcase_36 AC 68 ms
73,044 KB
testcase_37 AC 97 ms
77,492 KB
testcase_38 AC 73 ms
74,012 KB
testcase_39 AC 99 ms
77,632 KB
testcase_40 AC 52 ms
64,320 KB
testcase_41 AC 995 ms
144,100 KB
testcase_42 AC 349 ms
97,828 KB
testcase_43 AC 543 ms
111,904 KB
testcase_44 AC 248 ms
90,448 KB
testcase_45 AC 528 ms
110,548 KB
testcase_46 AC 39 ms
54,860 KB
testcase_47 AC 39 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappush as hpush, heappop as hpop
from math import sqrt
import sys
input = lambda: sys.stdin.readline().rstrip()
N, M = map(int, input().split())
s, t = map(int, input().split())
s, t = s-1, t-1

L = []
for _ in range(N):
    a, b = map(int, input().split())
    L.append((a, b))

X = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a, b = a-1, b-1
    d = sqrt((L[a][0] - L[b][0]) ** 2 + (L[a][1] - L[b][1]) ** 2)
    X[a].append([b, d])
    X[b].append([a, d])

def dijkstra(n, E, i0=0):
    h = [[0, i0]]
    D = [-1] * n
    done = [0] * n
    D[i0] = 0
    
    while h:
        d, i = hpop(h)
        done[i] = 1
        for j, w in E[i]:
            nd = d + w
            if D[j] < 0 or D[j] > nd:
                if done[j] == 0:
                    hpush(h, [nd, j])
                    D[j] = nd
    return D

print(dijkstra(N, X, s)[t])

0