結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ayaoniayaoni
提出日時 2021-04-25 00:43:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 932 ms / 2,000 ms
コード長 1,888 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 143,384 KB
最終ジャッジ日時 2024-07-04 09:18:33
合計ジャッジ時間 23,637 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,120 KB
testcase_01 AC 40 ms
53,120 KB
testcase_02 AC 497 ms
110,848 KB
testcase_03 AC 629 ms
139,520 KB
testcase_04 AC 621 ms
138,880 KB
testcase_05 AC 429 ms
135,424 KB
testcase_06 AC 428 ms
135,424 KB
testcase_07 AC 161 ms
94,336 KB
testcase_08 AC 385 ms
141,620 KB
testcase_09 AC 110 ms
82,432 KB
testcase_10 AC 218 ms
106,240 KB
testcase_11 AC 170 ms
94,464 KB
testcase_12 AC 139 ms
86,528 KB
testcase_13 AC 641 ms
118,912 KB
testcase_14 AC 707 ms
125,440 KB
testcase_15 AC 795 ms
134,272 KB
testcase_16 AC 444 ms
104,064 KB
testcase_17 AC 912 ms
138,880 KB
testcase_18 AC 361 ms
95,872 KB
testcase_19 AC 867 ms
134,912 KB
testcase_20 AC 290 ms
92,672 KB
testcase_21 AC 365 ms
99,840 KB
testcase_22 AC 762 ms
129,280 KB
testcase_23 AC 68 ms
68,608 KB
testcase_24 AC 72 ms
71,040 KB
testcase_25 AC 138 ms
86,400 KB
testcase_26 AC 450 ms
108,288 KB
testcase_27 AC 468 ms
107,648 KB
testcase_28 AC 806 ms
128,896 KB
testcase_29 AC 171 ms
84,096 KB
testcase_30 AC 818 ms
133,248 KB
testcase_31 AC 536 ms
117,888 KB
testcase_32 AC 402 ms
103,168 KB
testcase_33 AC 837 ms
135,936 KB
testcase_34 AC 354 ms
97,792 KB
testcase_35 AC 833 ms
135,296 KB
testcase_36 AC 80 ms
72,832 KB
testcase_37 AC 110 ms
77,440 KB
testcase_38 AC 93 ms
77,184 KB
testcase_39 AC 118 ms
77,952 KB
testcase_40 AC 56 ms
62,720 KB
testcase_41 AC 932 ms
143,384 KB
testcase_42 AC 323 ms
97,792 KB
testcase_43 AC 524 ms
111,744 KB
testcase_44 AC 239 ms
89,856 KB
testcase_45 AC 492 ms
110,976 KB
testcase_46 AC 40 ms
53,504 KB
testcase_47 AC 44 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import heapq
sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


class Dijkstra_list():  # 1-based
    def __init__(self,N):
        self.N = N
        self.edges = [[] for _ in range(N+1)]

    def add(self, u, v, d, directed=False):
        if directed is False:  # 無向グラフの場合
            self.edges[u].append((v,d))
            self.edges[v].append((u,d))
        else:  # 有向グラフの場合
            self.edges[u].append((v,d))

    def delete(self, u, v):
        self.edges[u] = [_ for _ in self.edges[u] if _[0] != v]
        self.edges[v] = [_ for _ in self.edges[v] if _[0] != u]

    def search(self, s):  # sから各頂点までの最短距離
        inf = 10**18
        dist = [inf]*(self.N+1)
        dist[s] = 0
        q = []
        heapq.heappush(q, (0, s))
        v = [0]*(self.N+1)
        while q:
            k, u = heapq.heappop(q)
            if v[u]:
                continue
            v[u] = 1

            for uv, ud in self.edges[u]:
                if v[uv]:
                    continue
                vd = k + ud
                if dist[uv] > vd:
                    dist[uv] = vd
                    heapq.heappush(q, (vd, uv))
        return dist


N,M = MI()
X,Y = MI()
pos = [(0,0)]+[tuple(MI()) for _ in range(N)]

Di = Dijkstra_list(N)
for _ in range(M):
    P,Q = MI()
    x0,y0 = pos[P]
    x1,y1 = pos[Q]
    d = ((x0-x1)**2+(y0-y1)**2)**.5
    Di.add(P,Q,d,directed=False)

dist = Di.search(X)
ans = dist[Y]
print(ans)
0