結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー m1025o1184tm1025o1184t
提出日時 2020-05-29 21:56:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 1,336 bytes
コンパイル時間 1,735 ms
コンパイル使用メモリ 176,844 KB
実行使用メモリ 22,840 KB
最終ジャッジ日時 2024-11-06 04:13:00
合計ジャッジ時間 6,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,268 KB
testcase_01 AC 3 ms
8,392 KB
testcase_02 AC 81 ms
14,696 KB
testcase_03 AC 116 ms
22,516 KB
testcase_04 AC 115 ms
22,840 KB
testcase_05 AC 87 ms
22,128 KB
testcase_06 AC 89 ms
21,928 KB
testcase_07 AC 29 ms
11,716 KB
testcase_08 AC 100 ms
20,548 KB
testcase_09 AC 12 ms
9,412 KB
testcase_10 AC 47 ms
13,764 KB
testcase_11 AC 33 ms
11,968 KB
testcase_12 AC 25 ms
11,848 KB
testcase_13 AC 92 ms
16,936 KB
testcase_14 AC 100 ms
18,360 KB
testcase_15 AC 119 ms
19,516 KB
testcase_16 AC 60 ms
15,016 KB
testcase_17 AC 144 ms
20,380 KB
testcase_18 AC 43 ms
13,256 KB
testcase_19 AC 126 ms
19,624 KB
testcase_20 AC 33 ms
11,496 KB
testcase_21 AC 48 ms
14,732 KB
testcase_22 AC 106 ms
18,812 KB
testcase_23 AC 5 ms
8,772 KB
testcase_24 AC 5 ms
9,156 KB
testcase_25 AC 22 ms
12,864 KB
testcase_26 AC 62 ms
15,092 KB
testcase_27 AC 66 ms
15,496 KB
testcase_28 AC 116 ms
19,956 KB
testcase_29 AC 17 ms
11,456 KB
testcase_30 AC 128 ms
20,988 KB
testcase_31 AC 86 ms
17,468 KB
testcase_32 AC 53 ms
13,824 KB
testcase_33 AC 127 ms
21,756 KB
testcase_34 AC 44 ms
13,124 KB
testcase_35 AC 122 ms
20,852 KB
testcase_36 AC 5 ms
9,664 KB
testcase_37 AC 5 ms
8,524 KB
testcase_38 AC 4 ms
8,540 KB
testcase_39 AC 5 ms
8,648 KB
testcase_40 AC 5 ms
9,284 KB
testcase_41 AC 206 ms
21,188 KB
testcase_42 AC 47 ms
12,872 KB
testcase_43 AC 84 ms
15,432 KB
testcase_44 AC 30 ms
11,144 KB
testcase_45 AC 78 ms
14,852 KB
testcase_46 AC 4 ms
8,440 KB
testcase_47 AC 4 ms
8,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<(n);++i)
#define rrep(i,n) for(int i=1;i<(n);++i)
#define all(a) (a).begin(),(a).end()
#define rall(a) (a).rbegin(),(a).rend()
#define maxs(a, b) a = max(a, b)
#define mins(a, b) a = min(a, b)
using namespace std;
typedef long long ll;
typedef pair<double, int> P;
const ll linf = (1ll << 61);
const int inf = 1001001001;
const int mod = 1000000007;

struct edge { int to; double cost; };
vector<edge> g[200005];
int n, m;
int X, Y;
double d[200005];

double dijkstra() {
	priority_queue<P, vector<P>, greater<P>> pq;
	fill(d, d + n, inf);
	d[X] = 0;
	pq.emplace(0, X);
	while (pq.size()) {
		P p = pq.top(); pq.pop();
		int v = p.second;
		if (d[v] < p.first) continue;
		for (auto& c : g[v]) {
			edge e = c;
			if (d[e.to] > d[v] + e.cost) {
				d[e.to] = d[v] + e.cost;
				pq.emplace(d[e.to], e.to);
			}
		}
	}
	return d[Y];
}

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	cin >> n >> m;
	cin >> X >> Y;
	X--; Y--;
	vector<int> p(n), q(n);
	rep(i, n) cin >> p[i] >> q[i];
	rep(i, m) {
		int a, b;
		cin >> a >> b;
		a--; b--;
		g[a].push_back({ b, sqrt(pow(abs(p[a] - p[b]), 2) + pow(abs(q[a] - q[b]), 2)) });
		g[b].push_back({ a, sqrt(pow(abs(p[a] - p[b]), 2) + pow(abs(q[a] - q[b]), 2)) });
	}
	double ans = dijkstra();
	printf("%.10f\n", ans);
 	return 0;
}
0