結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー naru_1017naru_1017
提出日時 2020-05-29 22:43:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,747 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-11-06 06:39:32
合計ジャッジ時間 37,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 836 ms
59,008 KB
testcase_03 AC 1,414 ms
100,224 KB
testcase_04 AC 1,413 ms
100,224 KB
testcase_05 AC 1,013 ms
93,056 KB
testcase_06 AC 1,009 ms
93,056 KB
testcase_07 AC 259 ms
36,608 KB
testcase_08 AC 898 ms
107,776 KB
testcase_09 AC 105 ms
19,072 KB
testcase_10 AC 411 ms
53,888 KB
testcase_11 AC 292 ms
40,448 KB
testcase_12 AC 518 ms
38,400 KB
testcase_13 AC 1,261 ms
71,936 KB
testcase_14 AC 1,351 ms
79,104 KB
testcase_15 AC 1,586 ms
89,088 KB
testcase_16 AC 922 ms
54,144 KB
testcase_17 AC 1,747 ms
94,464 KB
testcase_18 AC 670 ms
44,416 KB
testcase_19 AC 1,471 ms
88,448 KB
testcase_20 AC 388 ms
33,280 KB
testcase_21 AC 901 ms
52,864 KB
testcase_22 AC 1,493 ms
84,224 KB
testcase_23 AC 46 ms
12,032 KB
testcase_24 AC 50 ms
12,288 KB
testcase_25 AC 452 ms
35,200 KB
testcase_26 AC 820 ms
55,248 KB
testcase_27 AC 954 ms
57,856 KB
testcase_28 AC 1,679 ms
88,000 KB
testcase_29 AC 241 ms
23,680 KB
testcase_30 AC 1,535 ms
89,948 KB
testcase_31 AC 973 ms
64,860 KB
testcase_32 AC 675 ms
47,872 KB
testcase_33 AC 1,477 ms
88,064 KB
testcase_34 AC 655 ms
43,904 KB
testcase_35 AC 1,621 ms
90,448 KB
testcase_36 AC 40 ms
11,392 KB
testcase_37 AC 43 ms
11,776 KB
testcase_38 AC 39 ms
11,520 KB
testcase_39 AC 42 ms
11,776 KB
testcase_40 AC 35 ms
11,136 KB
testcase_41 AC 1,622 ms
107,392 KB
testcase_42 AC 471 ms
40,448 KB
testcase_43 AC 839 ms
61,952 KB
testcase_44 AC 296 ms
29,696 KB
testcase_45 AC 806 ms
60,672 KB
testcase_46 AC 31 ms
10,880 KB
testcase_47 AC 32 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

import heapq

INF=2<<28

def dijkstra(G,start,n):#グラフ,初期頂点,頂点数

    dist=[INF]*n;dist[start]=0
    used=[False]*n;used[start]=True
    q=[]

    for v in G[start]:
        heapq.heappush(q,v)
    
    while len(q)>0:
        now=heapq.heappop(q)
        if used[now[1]]:
            continue
        v=now[1]
        dist[v]=now[0]
        used[v]=True

        for e in G[v]:
            if not used[e[1]]:
                heapq.heappush(q,(e[0]+dist[v],e[1]))

    return dist
def main():
    n,m=map(int,input().split())
    x,y=map(int,input().split())
    x,y=x-1,y-1
    l=[tuple(int(i) for i in input().split()) for _ in range(n)]
    g=[[] for _ in range(n)]
    for _ in range(m):
        p,q=map(int,input().split())
        p,q=p-1,q-1
        dis=((l[q][0]-l[p][0])**2+(l[q][1]-l[p][1])**2)**0.5
        g[p].append((dis,q))
        g[q].append((dis,p))
    a=dijkstra(g,x,n)
    print(a[y])

if __name__=="__main__":
    main()
0