結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー yuma220284yuma220284
提出日時 2020-05-29 21:30:45
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 445 ms / 2,000 ms
コード長 1,350 bytes
コンパイル時間 2,378 ms
コンパイル使用メモリ 173,736 KB
実行使用メモリ 36,100 KB
最終ジャッジ日時 2024-11-06 02:34:49
合計ジャッジ時間 10,361 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 199 ms
19,840 KB
testcase_03 AC 271 ms
32,748 KB
testcase_04 AC 274 ms
33,772 KB
testcase_05 AC 232 ms
33,964 KB
testcase_06 AC 229 ms
32,556 KB
testcase_07 AC 81 ms
11,904 KB
testcase_08 AC 305 ms
35,536 KB
testcase_09 AC 28 ms
6,816 KB
testcase_10 AC 137 ms
17,664 KB
testcase_11 AC 94 ms
13,184 KB
testcase_12 AC 51 ms
10,112 KB
testcase_13 AC 203 ms
21,912 KB
testcase_14 AC 231 ms
25,548 KB
testcase_15 AC 269 ms
28,576 KB
testcase_16 AC 129 ms
16,240 KB
testcase_17 AC 302 ms
30,732 KB
testcase_18 AC 89 ms
12,672 KB
testcase_19 AC 281 ms
29,184 KB
testcase_20 AC 72 ms
10,624 KB
testcase_21 AC 104 ms
14,848 KB
testcase_22 AC 258 ms
27,040 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 47 ms
9,600 KB
testcase_26 AC 153 ms
18,344 KB
testcase_27 AC 146 ms
17,988 KB
testcase_28 AC 262 ms
27,220 KB
testcase_29 AC 28 ms
7,168 KB
testcase_30 AC 280 ms
29,740 KB
testcase_31 AC 196 ms
23,200 KB
testcase_32 AC 123 ms
15,924 KB
testcase_33 AC 271 ms
31,068 KB
testcase_34 AC 97 ms
13,056 KB
testcase_35 AC 282 ms
30,296 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 5 ms
6,816 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 4 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 445 ms
36,100 KB
testcase_42 AC 120 ms
13,440 KB
testcase_43 AC 226 ms
20,608 KB
testcase_44 AC 75 ms
9,728 KB
testcase_45 AC 213 ms
20,224 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

template<typename Type>
vector<Type> Dijkstra(vector<vector<pair<long long, Type> > > Graph, long long Start) {
	using PT = pair<Type, long long>;
	const Type Inf = numeric_limits<Type>::max();
	long long Size = Graph.size();
	vector<Type> Dist;
	Dist.assign(Size, Inf);
	priority_queue<PT, vector<PT>, greater<PT> > PQ;

	Dist[Start] = 0;
	PQ.emplace(PT(Dist[Start], Start));
	while (!PQ.empty()) {
		PT p = PQ.top();
		PQ.pop();
		Type D = p.first;
		long long E = p.second;
		if (Dist[E] < D) continue;
		for (pair<long long, Type> Next : Graph[E]) {
			Type ND = Next.second;
			long long NE = Next.first;
			if (Dist[NE] > Dist[E] + ND) {
				Dist[NE] = Dist[E] + ND;
				PQ.emplace(PT(Dist[NE], NE));
			}
		}
	}
	return Dist;
}

int main() {
	int N, M, X, Y;
	cin >> N >> M >> X >> Y;
	X--, Y--;
	vector<pair<double, double> > P(N);
	vector<vector<pair<long long, double> > > V(N);
	for (int i = 0; i < N; i++) {
		cin >> P[i].first >> P[i].second;
	}
	for (int i = 0; i < M; i++) {
		int S, T;
		cin >> S >> T;
		S--, T--;
		double D = (P[S].first - P[T].first) * (P[S].first - P[T].first) + (P[S].second - P[T].second) * (P[S].second - P[T].second);
		D = sqrt(D);
		V[S].push_back({ T, D });
		V[T].push_back({ S, D });
	}
	vector<double> Dist = Dijkstra(V, X);
	printf("%.12lf\n", Dist[Y]);
}
0