結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー mkawa2
提出日時 2021-05-28 17:42:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,314 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 118,528 KB
最終ジャッジ日時 2024-11-07 06:09:52
合計ジャッジ時間 39,395 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 45 TLE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from heapq import *

def Dist(u, v):
    x0, y0 = xy[u]
    x1, y1 = xy[v]
    return ((x1-x0)**2+(y1-y0)**2)**0.5

n, m = LI()
su, gu = LI1()
xy = LLI(n)
to = [[] for _ in range(n)]
for _ in range(m):
    u, v = LI1()
    d = Dist(u, v)
    to[u].append((v, d))
    to[v].append((u, d))

dist = [inf]*n
dist[su] = 0
hp = [(0, su)]
while hp:
    d, u = heappop(hp)
    if u == gu:
        print(d)
        break
    if d > dist[u]: continue
    for v, c in to[u]:
        nd = d+c
        if nd >= dist[v]: continue
        dist[v] = nd
        heappush(hp, (nd, v))
0