結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー 双六双六
提出日時 2020-07-24 21:00:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,053 ms / 2,000 ms
コード長 1,257 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 183,640 KB
最終ジャッジ日時 2024-06-25 19:53:29
合計ジャッジ時間 27,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,092 KB
testcase_01 AC 46 ms
56,076 KB
testcase_02 AC 604 ms
124,008 KB
testcase_03 AC 728 ms
159,064 KB
testcase_04 AC 696 ms
157,616 KB
testcase_05 AC 526 ms
163,536 KB
testcase_06 AC 516 ms
163,384 KB
testcase_07 AC 176 ms
102,884 KB
testcase_08 AC 435 ms
181,508 KB
testcase_09 AC 110 ms
82,932 KB
testcase_10 AC 235 ms
119,268 KB
testcase_11 AC 191 ms
106,904 KB
testcase_12 AC 156 ms
89,260 KB
testcase_13 AC 729 ms
128,732 KB
testcase_14 AC 823 ms
141,856 KB
testcase_15 AC 921 ms
154,076 KB
testcase_16 AC 500 ms
107,024 KB
testcase_17 AC 1,012 ms
159,180 KB
testcase_18 AC 397 ms
98,684 KB
testcase_19 AC 906 ms
153,204 KB
testcase_20 AC 317 ms
95,164 KB
testcase_21 AC 439 ms
103,100 KB
testcase_22 AC 901 ms
147,204 KB
testcase_23 AC 65 ms
72,644 KB
testcase_24 AC 78 ms
77,584 KB
testcase_25 AC 146 ms
85,728 KB
testcase_26 AC 526 ms
120,336 KB
testcase_27 AC 576 ms
117,132 KB
testcase_28 AC 952 ms
141,604 KB
testcase_29 AC 200 ms
84,212 KB
testcase_30 AC 904 ms
154,704 KB
testcase_31 AC 621 ms
131,296 KB
testcase_32 AC 467 ms
112,304 KB
testcase_33 AC 1,021 ms
154,048 KB
testcase_34 AC 417 ms
101,028 KB
testcase_35 AC 899 ms
155,068 KB
testcase_36 AC 76 ms
74,512 KB
testcase_37 AC 112 ms
77,544 KB
testcase_38 AC 87 ms
77,004 KB
testcase_39 AC 125 ms
78,400 KB
testcase_40 AC 59 ms
66,348 KB
testcase_41 AC 1,053 ms
183,640 KB
testcase_42 AC 375 ms
105,692 KB
testcase_43 AC 591 ms
128,780 KB
testcase_44 AC 264 ms
94,080 KB
testcase_45 AC 577 ms
124,080 KB
testcase_46 AC 45 ms
55,356 KB
testcase_47 AC 45 ms
55,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
from heapq import heappop, heappush
INF = float('inf')

def getlist():
	return list(map(int, input().split()))

class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)

	def __len__(self):
		return len(self.graph)

	def add_edge(self, a, b, w):
		self.graph[a].append((b, w))

class Dijkstra(object):
	def __init__(self, graph, s):
		self.g = graph.graph
		self.dist = defaultdict(lambda: INF); self.dist[s] = 0
		self.Q = []
		heappush(self.Q, (self.dist[s], s))
		while self.Q:
			dist_u, u = heappop(self.Q)
			if self.dist[u] < dist_u:
				continue
			for v, w in self.g[u]:
				alt = dist_u + w
				if self.dist[v] > alt:
					self.dist[v] = alt
					heappush(self.Q, (alt, v))

#処理内容
def main():
	N, M = getlist()
	X, Y = getlist()
	X -= 1; Y -= 1
	node = []
	for i in range(N):
		p, q = getlist()
		node.append([p, q])

	G = Graph()
	for i in range(M):
		P, Q = getlist()
		P -= 1; Q -= 1
		x1, y1 = node[P]
		x2, y2 = node[Q]
		dist = ((x1 - x2) ** 2 + (y1 - y2) ** 2) ** 0.5
		G.add_edge(P, Q, dist)
		G.add_edge(Q, P, dist)

	D = Dijkstra(G, X)
	ans = D.dist[Y]
	print(ans)

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