結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー realDivineJKrealDivineJK
提出日時 2020-05-29 23:58:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 896 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 212,288 KB
最終ジャッジ日時 2024-11-06 09:21:08
合計ジャッジ時間 56,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,212 KB
testcase_01 AC 41 ms
54,372 KB
testcase_02 AC 1,441 ms
134,888 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,879 ms
197,456 KB
testcase_06 AC 1,861 ms
197,200 KB
testcase_07 AC 748 ms
108,244 KB
testcase_08 TLE -
testcase_09 AC 311 ms
86,832 KB
testcase_10 AC 1,230 ms
128,768 KB
testcase_11 AC 826 ms
109,264 KB
testcase_12 AC 231 ms
96,404 KB
testcase_13 AC 1,654 ms
150,348 KB
testcase_14 AC 1,960 ms
159,404 KB
testcase_15 TLE -
testcase_16 AC 1,013 ms
121,952 KB
testcase_17 TLE -
testcase_18 AC 707 ms
105,892 KB
testcase_19 TLE -
testcase_20 AC 678 ms
102,536 KB
testcase_21 AC 848 ms
113,292 KB
testcase_22 TLE -
testcase_23 AC 82 ms
77,060 KB
testcase_24 AC 91 ms
77,752 KB
testcase_25 AC 216 ms
95,668 KB
testcase_26 AC 1,197 ms
129,640 KB
testcase_27 AC 1,186 ms
130,536 KB
testcase_28 AC 1,990 ms
175,644 KB
testcase_29 AC 290 ms
90,212 KB
testcase_30 TLE -
testcase_31 AC 1,594 ms
148,188 KB
testcase_32 AC 1,037 ms
120,880 KB
testcase_33 TLE -
testcase_34 AC 754 ms
110,348 KB
testcase_35 TLE -
testcase_36 AC 104 ms
77,220 KB
testcase_37 AC 176 ms
78,940 KB
testcase_38 AC 124 ms
78,772 KB
testcase_39 AC 178 ms
79,332 KB
testcase_40 AC 70 ms
70,744 KB
testcase_41 TLE -
testcase_42 AC 927 ms
109,408 KB
testcase_43 AC 1,531 ms
137,836 KB
testcase_44 AC 622 ms
100,192 KB
testcase_45 AC 1,490 ms
135,308 KB
testcase_46 AC 40 ms
54,840 KB
testcase_47 AC 37 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
N, M = map(int, input().split())
X, Y = map(int, input().split())
p = [list(map(int, input().split())) for _ in range(N)]
D = {}
DD = {}
for i in range(M):
    P, Q = map(int, input().split())
    if P-1 in D:
        D[P-1].append(Q-1)
    else:
        D[P-1] = [Q-1]
    if Q-1 in D:
        D[Q-1].append(P-1)
    else:
        D[Q-1] = [P-1]
    DD[(P-1)*N+(Q-1)] = ((p[P-1][0]-p[Q-1][0])**2+(p[P-1][1]-p[Q-1][1])**2) ** 0.5
    DD[(Q-1)*N+(P-1)] = ((p[P-1][0]-p[Q-1][0])**2+(p[P-1][1]-p[Q-1][1])**2) ** 0.5
dist = [int(1e18) for _ in range(N)]
dist[X-1] = 0
pq = []
for i in range(N):
    heappush(pq, [dist[i], i])
while pq != []:
    b = heappop(pq)
    r = b[1]
    if r in D:
        for i in D[r]:
            if dist[i] > dist[r] + DD[r*N+i]:
                dist[i] = dist[r] + DD[r*N+i]
                heappush(pq, [dist[i], i])
print(dist[Y-1])
0