結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ttrttr
提出日時 2020-05-29 21:51:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 146,616 KB
最終ジャッジ日時 2024-11-06 03:59:09
合計ジャッジ時間 28,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,440 KB
testcase_01 AC 40 ms
53,756 KB
testcase_02 AC 604 ms
109,636 KB
testcase_03 AC 910 ms
146,616 KB
testcase_04 AC 900 ms
146,616 KB
testcase_05 AC 651 ms
139,268 KB
testcase_06 AC 644 ms
138,760 KB
testcase_07 AC 201 ms
93,244 KB
testcase_08 AC 489 ms
139,372 KB
testcase_09 AC 131 ms
79,920 KB
testcase_10 AC 270 ms
102,008 KB
testcase_11 AC 221 ms
96,052 KB
testcase_12 AC 350 ms
95,396 KB
testcase_13 AC 926 ms
123,584 KB
testcase_14 AC 1,019 ms
129,876 KB
testcase_15 AC 1,123 ms
137,524 KB
testcase_16 AC 686 ms
108,276 KB
testcase_17 AC 1,174 ms
141,704 KB
testcase_18 AC 532 ms
100,512 KB
testcase_19 AC 1,073 ms
138,796 KB
testcase_20 AC 375 ms
93,936 KB
testcase_21 AC 642 ms
107,724 KB
testcase_22 AC 1,074 ms
133,260 KB
testcase_23 AC 113 ms
77,700 KB
testcase_24 AC 120 ms
78,120 KB
testcase_25 AC 320 ms
93,188 KB
testcase_26 AC 679 ms
111,808 KB
testcase_27 AC 750 ms
111,544 KB
testcase_28 AC 1,181 ms
136,936 KB
testcase_29 AC 249 ms
86,212 KB
testcase_30 AC 1,191 ms
138,420 KB
testcase_31 AC 756 ms
119,388 KB
testcase_32 AC 532 ms
104,688 KB
testcase_33 AC 1,144 ms
136,300 KB
testcase_34 AC 537 ms
101,256 KB
testcase_35 AC 1,178 ms
141,420 KB
testcase_36 AC 108 ms
77,004 KB
testcase_37 AC 139 ms
78,552 KB
testcase_38 AC 115 ms
77,936 KB
testcase_39 AC 143 ms
78,300 KB
testcase_40 AC 71 ms
71,576 KB
testcase_41 AC 1,108 ms
140,944 KB
testcase_42 AC 397 ms
96,996 KB
testcase_43 AC 632 ms
110,980 KB
testcase_44 AC 300 ms
89,804 KB
testcase_45 AC 615 ms
110,252 KB
testcase_46 AC 40 ms
53,680 KB
testcase_47 AC 41 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N,M = map(int, input().split())
X,Y = map(int, input().split())
L = [[int(l) for l in input().split()] for _ in range(N)]
E = [[] for _ in range(N)]
for _ in range(M):
    p,q = map(int, input().split())
    p -= 1
    q -= 1
    d = ((L[p][0]-L[q][0])**2 + (L[p][1]-L[q][1])**2)**0.5
    E[p].append((q, d))
    E[q].append((p, d))

def dijkstra(s):
    used = [0]*N
    inf = 10**10
    d = [inf]*N
    h = [(0, s)]
    while h:
        temp = heapq.heappop(h)
        u = temp[1]
        r = temp[0]
        if used[u] == 1:
            continue
        d[u] = r
        used[u] = 1
        for e in E[u]:
            if used[e[0]] == 1:
                continue
            heapq.heappush(h, (r+e[1], e[0]))
    return d[Y-1]

ans = dijkstra(X-1)
print(ans)
0