結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tobusakanatobusakana
提出日時 2022-12-10 20:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 681 bytes
コンパイル時間 580 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 162,816 KB
最終ジャッジ日時 2024-10-14 23:54:01
合計ジャッジ時間 25,418 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 40 ms
52,992 KB
testcase_02 AC 462 ms
114,816 KB
testcase_03 AC 757 ms
162,004 KB
testcase_04 AC 869 ms
162,816 KB
testcase_05 AC 639 ms
161,456 KB
testcase_06 AC 643 ms
161,328 KB
testcase_07 AC 203 ms
96,512 KB
testcase_08 AC 477 ms
152,576 KB
testcase_09 AC 145 ms
83,840 KB
testcase_10 AC 276 ms
110,592 KB
testcase_11 AC 223 ms
99,968 KB
testcase_12 AC 196 ms
96,256 KB
testcase_13 AC 715 ms
135,228 KB
testcase_14 AC 698 ms
139,864 KB
testcase_15 AC 855 ms
150,512 KB
testcase_16 AC 455 ms
117,404 KB
testcase_17 AC 973 ms
156,644 KB
testcase_18 AC 416 ms
108,244 KB
testcase_19 AC 759 ms
152,320 KB
testcase_20 AC 351 ms
98,432 KB
testcase_21 AC 501 ms
118,144 KB
testcase_22 AC 844 ms
147,472 KB
testcase_23 AC 117 ms
77,824 KB
testcase_24 AC 90 ms
77,696 KB
testcase_25 AC 196 ms
94,848 KB
testcase_26 AC 431 ms
114,944 KB
testcase_27 AC 469 ms
119,808 KB
testcase_28 AC 688 ms
148,224 KB
testcase_29 AC 223 ms
89,856 KB
testcase_30 AC 735 ms
148,744 KB
testcase_31 AC 668 ms
130,096 KB
testcase_32 AC 379 ms
108,032 KB
testcase_33 AC 883 ms
150,360 KB
testcase_34 AC 427 ms
108,544 KB
testcase_35 AC 673 ms
146,592 KB
testcase_36 AC 85 ms
74,112 KB
testcase_37 AC 126 ms
77,952 KB
testcase_38 AC 107 ms
77,184 KB
testcase_39 AC 112 ms
77,056 KB
testcase_40 AC 67 ms
65,152 KB
testcase_41 AC 989 ms
152,224 KB
testcase_42 AC 359 ms
100,480 KB
testcase_43 AC 492 ms
116,864 KB
testcase_44 AC 242 ms
92,032 KB
testcase_45 AC 551 ms
116,096 KB
testcase_46 AC 40 ms
52,224 KB
testcase_47 AC 39 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import heapq as hq
q = []
hq.heappush(q, (0, X - 1))
G = [[] for i in range(N)]
for _ in range(M):
    i,j = map(lambda x:int(x) - 1,input().split())
    d = ((PQ[i][0] - PQ[j][0]) ** 2 + (PQ[i][1] - PQ[j][1]) ** 2) ** 0.5
    G[i].append([j, d])
    G[j].append([i, d])
    
visited = [False] * N
while q:
    dist, v = hq.heappop(q)
    if visited[v]:
        continue
    visited[v] = True
    if v == Y - 1:
        print(dist)
        break
    for child, d in G[v]:
        if visited[child]:
            continue
        hq.heappush(q, (dist + d, child))
0