結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ronpooronpoo
提出日時 2023-09-07 10:44:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 923 ms / 2,000 ms
コード長 934 bytes
コンパイル時間 358 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 161,864 KB
最終ジャッジ日時 2024-06-25 04:57:57
合計ジャッジ時間 24,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,940 KB
testcase_01 AC 38 ms
54,844 KB
testcase_02 AC 501 ms
120,764 KB
testcase_03 AC 704 ms
158,232 KB
testcase_04 AC 691 ms
158,824 KB
testcase_05 AC 529 ms
158,464 KB
testcase_06 AC 529 ms
158,340 KB
testcase_07 AC 191 ms
94,180 KB
testcase_08 AC 463 ms
160,788 KB
testcase_09 AC 123 ms
82,452 KB
testcase_10 AC 246 ms
106,716 KB
testcase_11 AC 204 ms
100,444 KB
testcase_12 AC 188 ms
97,992 KB
testcase_13 AC 654 ms
133,180 KB
testcase_14 AC 705 ms
139,920 KB
testcase_15 AC 813 ms
150,960 KB
testcase_16 AC 441 ms
115,432 KB
testcase_17 AC 836 ms
157,112 KB
testcase_18 AC 345 ms
105,300 KB
testcase_19 AC 816 ms
151,416 KB
testcase_20 AC 290 ms
98,016 KB
testcase_21 AC 377 ms
112,088 KB
testcase_22 AC 772 ms
144,472 KB
testcase_23 AC 79 ms
77,584 KB
testcase_24 AC 84 ms
77,584 KB
testcase_25 AC 173 ms
91,248 KB
testcase_26 AC 475 ms
119,464 KB
testcase_27 AC 501 ms
119,728 KB
testcase_28 AC 793 ms
146,636 KB
testcase_29 AC 199 ms
88,576 KB
testcase_30 AC 811 ms
148,916 KB
testcase_31 AC 568 ms
129,184 KB
testcase_32 AC 416 ms
111,448 KB
testcase_33 AC 868 ms
149,880 KB
testcase_34 AC 395 ms
105,860 KB
testcase_35 AC 812 ms
153,176 KB
testcase_36 AC 91 ms
77,204 KB
testcase_37 AC 129 ms
78,632 KB
testcase_38 AC 95 ms
77,900 KB
testcase_39 AC 129 ms
78,504 KB
testcase_40 AC 62 ms
68,032 KB
testcase_41 AC 923 ms
161,864 KB
testcase_42 AC 337 ms
103,828 KB
testcase_43 AC 509 ms
121,332 KB
testcase_44 AC 251 ms
93,904 KB
testcase_45 AC 464 ms
120,988 KB
testcase_46 AC 36 ms
53,884 KB
testcase_47 AC 39 ms
53,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop, heappush

N, M = map(int, input().split())
X, Y = map(int, input().split())
pq = [list(map(int, input().split())) for _ in range(N)]
PQ = [list(map(int, input().split())) for _ in range(M)]

G = [[] for _ in range(N)]
for i in range(M):
    a, b = PQ[i]
    a -= 1
    b -= 1
    d = ((pq[a][0]-pq[b][0])**2 + (pq[a][1]-pq[b][1])**2)**0.5
    G[a].append((b, d))
    G[b].append((a, d))

dist = [float('inf')] * N
dist[X-1] = 0

# dijkstra
def dijkstra(s, g):
    que = []
    heappush(que, (0, s))
    while que:
        cost, now = heappop(que)
        if dist[now] < cost:
            continue
        for nxt, d in G[now]:
            if nxt == now:
                continue     
            nxt_cost = dist[now] + d
            if nxt_cost < dist[nxt]:
                dist[nxt] = nxt_cost
                heappush(que, (nxt_cost, nxt))
        
    return dist[g]

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