結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー hedwig100hedwig100
提出日時 2020-05-29 21:50:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,092 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 118,656 KB
最終ジャッジ日時 2024-11-06 03:53:18
合計ジャッジ時間 49,028 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
11,136 KB
testcase_02 AC 1,231 ms
64,256 KB
testcase_03 AC 1,834 ms
103,972 KB
testcase_04 AC 1,806 ms
103,056 KB
testcase_05 AC 1,601 ms
95,680 KB
testcase_06 AC 1,582 ms
95,676 KB
testcase_07 AC 447 ms
39,424 KB
testcase_08 AC 1,671 ms
118,656 KB
testcase_09 AC 167 ms
20,096 KB
testcase_10 AC 761 ms
58,880 KB
testcase_11 AC 527 ms
43,904 KB
testcase_12 AC 488 ms
31,232 KB
testcase_13 AC 1,486 ms
70,144 KB
testcase_14 AC 1,644 ms
80,128 KB
testcase_15 AC 1,969 ms
91,776 KB
testcase_16 AC 1,020 ms
50,048 KB
testcase_17 TLE -
testcase_18 AC 748 ms
39,424 KB
testcase_19 AC 1,985 ms
92,544 KB
testcase_20 AC 531 ms
34,176 KB
testcase_21 AC 922 ms
45,056 KB
testcase_22 AC 1,928 ms
86,528 KB
testcase_23 AC 51 ms
11,648 KB
testcase_24 AC 55 ms
11,904 KB
testcase_25 AC 434 ms
29,056 KB
testcase_26 AC 1,065 ms
55,592 KB
testcase_27 AC 1,126 ms
56,320 KB
testcase_28 AC 1,898 ms
85,120 KB
testcase_29 AC 270 ms
20,992 KB
testcase_30 TLE -
testcase_31 AC 1,329 ms
69,100 KB
testcase_32 AC 880 ms
49,664 KB
testcase_33 TLE -
testcase_34 AC 748 ms
41,088 KB
testcase_35 AC 1,979 ms
92,436 KB
testcase_36 AC 41 ms
11,264 KB
testcase_37 AC 49 ms
12,032 KB
testcase_38 AC 43 ms
11,392 KB
testcase_39 AC 48 ms
11,776 KB
testcase_40 AC 36 ms
11,136 KB
testcase_41 TLE -
testcase_42 AC 716 ms
43,904 KB
testcase_43 AC 1,241 ms
67,840 KB
testcase_44 AC 448 ms
31,744 KB
testcase_45 AC 1,213 ms
66,304 KB
testcase_46 AC 32 ms
11,008 KB
testcase_47 AC 33 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15
from heapq import heapify,heappop,heappush

def dijkstra(G,s = 0): #sを始点とした最短経を求める
    n = len(G)
    dist = [INF] * n
    dist[s] = 0
    q = [(0,s)]
    while q:
        d,v = heappop(q)
        if dist[v] < d:
            continue
        for e,cost in G[v]:
            if dist[e] > dist[v] + cost:
                dist[e] = dist[v] + cost
                heappush(q,(dist[e],e))
    return dist
def main():
    N,M = map(int,input().split())
    X,Y = map(int,input().split())
    point = [list(map(int,input().split())) for _ in range(N)]
    dist = lambda i,j:((point[i][0] - point[j][0])*(point[i][0] - point[j][0]) + (point[i][1] - point[j][1])*(point[i][1] - point[j][1]))**0.5
    G = [[] for _ in range(N)]
    for _ in range(M):
        x,y = map(int,input().split())
        x -= 1
        y -= 1
        d = dist(x,y)
        G[x].append((y,d))
        G[y].append((x,d))
    dist = dijkstra(G,X - 1)
    ans = dist[Y - 1]
    print(ans)
if __name__ == '__main__':
    main()
0