結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tkmst201tkmst201
提出日時 2021-02-17 15:56:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 1,303 bytes
コンパイル時間 2,404 ms
コンパイル使用メモリ 216,344 KB
実行使用メモリ 21,056 KB
最終ジャッジ日時 2024-09-14 02:43:03
合計ジャッジ時間 9,397 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 90 ms
12,544 KB
testcase_03 AC 124 ms
20,424 KB
testcase_04 AC 124 ms
20,292 KB
testcase_05 AC 97 ms
20,292 KB
testcase_06 AC 97 ms
20,208 KB
testcase_07 AC 31 ms
7,936 KB
testcase_08 AC 112 ms
20,352 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 50 ms
11,008 KB
testcase_11 AC 35 ms
8,576 KB
testcase_12 AC 26 ms
7,168 KB
testcase_13 AC 97 ms
14,016 KB
testcase_14 AC 113 ms
16,068 KB
testcase_15 AC 135 ms
17,652 KB
testcase_16 AC 64 ms
11,324 KB
testcase_17 AC 145 ms
18,784 KB
testcase_18 AC 45 ms
9,088 KB
testcase_19 AC 131 ms
18,008 KB
testcase_20 AC 33 ms
7,552 KB
testcase_21 AC 53 ms
10,448 KB
testcase_22 AC 123 ms
16,964 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 24 ms
6,912 KB
testcase_26 AC 71 ms
11,944 KB
testcase_27 AC 74 ms
12,016 KB
testcase_28 AC 125 ms
17,416 KB
testcase_29 AC 16 ms
5,888 KB
testcase_30 AC 136 ms
18,692 KB
testcase_31 AC 92 ms
15,308 KB
testcase_32 AC 59 ms
10,868 KB
testcase_33 AC 137 ms
19,476 KB
testcase_34 AC 48 ms
9,216 KB
testcase_35 AC 135 ms
19,112 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 210 ms
21,056 KB
testcase_42 AC 50 ms
8,960 KB
testcase_43 AC 102 ms
12,800 KB
testcase_44 AC 31 ms
7,040 KB
testcase_45 AC 97 ms
12,544 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) begin(v),end(v)
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }
using ll = long long;
using pii = pair<int, int>;
constexpr ll INF = 1ll<<30;
constexpr ll longINF = 1ll<<60;
constexpr ll MOD = 1000000007;
constexpr bool debug = false;
//---------------------------------//

int main() {
	int N, M, X, Y;
	cin >> N >> M >> X >> Y;
	--X; --Y;
	vector<int> y(N), x(N);
	REP(i, N) scanf("%d %d", &y[i], &x[i]);
	vector<vector<pair<int, double>>> g(N);
	REP(i, M) {
		int P, Q;
		scanf("%d %d", &P, &Q);
		--P; --Q;
		const double l = hypot(x[P] - x[Q], y[P] - y[Q]);
		g[P].emplace_back(Q, l);
		g[Q].emplace_back(P, l);
	}
	
	using tup = tuple<double, int>;
	vector<double> dist(N, INF);
	priority_queue<tup, vector<tup>, greater<tup>> pq;
	dist[X] = 0;
	pq.emplace(0, X);
	while (!pq.empty()) {
		auto [d, u] = pq.top(); pq.pop();
		if (dist[u] != d) continue;
		for (auto [v, c] : g[u]) if (chmin(dist[v], d + c)) pq.emplace(dist[v], v);
	}
	printf("%.18f\n", dist[Y]);
}
0