結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー akun0716akun0716
提出日時 2020-05-29 21:46:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 2,103 bytes
コンパイル時間 1,032 ms
コンパイル使用メモリ 97,216 KB
実行使用メモリ 37,404 KB
最終ジャッジ日時 2024-11-06 03:29:41
合計ジャッジ時間 9,811 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 195 ms
19,076 KB
testcase_03 AC 257 ms
34,792 KB
testcase_04 AC 255 ms
37,404 KB
testcase_05 AC 209 ms
34,336 KB
testcase_06 AC 210 ms
35,416 KB
testcase_07 AC 61 ms
11,264 KB
testcase_08 AC 221 ms
32,980 KB
testcase_09 AC 22 ms
6,816 KB
testcase_10 AC 100 ms
16,512 KB
testcase_11 AC 70 ms
12,416 KB
testcase_12 AC 61 ms
11,008 KB
testcase_13 AC 218 ms
22,636 KB
testcase_14 AC 249 ms
26,572 KB
testcase_15 AC 288 ms
30,692 KB
testcase_16 AC 145 ms
17,940 KB
testcase_17 AC 316 ms
32,068 KB
testcase_18 AC 100 ms
14,160 KB
testcase_19 AC 287 ms
29,912 KB
testcase_20 AC 76 ms
10,556 KB
testcase_21 AC 125 ms
16,864 KB
testcase_22 AC 267 ms
27,784 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 6 ms
6,820 KB
testcase_25 AC 55 ms
10,368 KB
testcase_26 AC 159 ms
19,220 KB
testcase_27 AC 167 ms
18,848 KB
testcase_28 AC 293 ms
29,428 KB
testcase_29 AC 34 ms
7,936 KB
testcase_30 AC 290 ms
32,616 KB
testcase_31 AC 197 ms
26,144 KB
testcase_32 AC 129 ms
16,744 KB
testcase_33 AC 292 ms
32,828 KB
testcase_34 AC 108 ms
13,908 KB
testcase_35 AC 304 ms
32,812 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 5 ms
6,816 KB
testcase_38 AC 4 ms
6,816 KB
testcase_39 AC 5 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 416 ms
33,984 KB
testcase_42 AC 109 ms
12,928 KB
testcase_43 AC 203 ms
19,840 KB
testcase_44 AC 66 ms
9,344 KB
testcase_45 AC 196 ms
19,284 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<map>
#include<set>
#include<stack>
#include<queue>
#include<math.h>
using namespace std;
typedef long long ll;
#define int long long
#define ld long double
typedef vector<ld> VI;
typedef pair<ld, ld> pii;
typedef vector<pii> VP;
typedef vector<string> VS;
typedef priority_queue<int> PQ;
template<class T>bool chmax(T &a, const T &b) { if (a < b) { a = b; return 1; } return 0; }
template<class T>bool chmin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; }
#define fore(i,a) for(auto &i:a)
#define REP(i,n) for(int i=0;i<n;i++)
#define eREP(i,n) for(int i=0;i<=n;i++)
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define eFOR(i,a,b) for(int i=(a);i<=(b);++i)
#define SORT(c) sort((c).begin(),(c).end())
#define rSORT(c) sort((c).rbegin(),(c).rend())
#define LB(x,a) lower_bound((x).begin(),(x).end(),(a))
#define UB(x,a) upper_bound((x).begin(),(x).end(),(a))
#define INF 1000000000
#define LLINF 922337203685477807
#define mod 1000000007
//priority_queue<int,vector<int>, greater<int> > q2;

int N, M;
int X, Y;
struct edge { 
	int to;
	ld cost;
};

vector<vector<edge> > G;
VI d;

void dikstra(int s) {
	priority_queue<pii, vector<pii>, greater<pii> >que;
	REP(i, N)d[i] = LLINF;
	d[s] = 0;
	que.push(pii(0, s));
	while (!que.empty()) {
		pii p = que.top();
		que.pop();
		int v = p.second;
		if (d[v] < p.first)continue;
		REP(i, G[v].size()) {
			edge e = G[v][i];
			if (d[e.to] > d[v] + e.cost) {
				d[e.to] = d[v] + e.cost;
				que.push(pii(d[e.to], e.to));
			}
		}
	}
}

ld dd(pii a, pii b) {
	return pow((a.first - b.first)*(a.first - b.first) + (a.second - b.second)*(a.second - b.second),0.5);
}

signed main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	cin >> N >> M;
	G.resize(N);
	d.resize(N);
	cin >> X >> Y;
	X--; Y--;
	VP A(N);
	REP(i, N)cin >> A[i].first >> A[i].second;
	REP(i, M) {
		int u, v; cin >> u >> v; u--; v--;
		ld dis = dd(A[u], A[v]);
		G[u].push_back((edge) { v, dis });
		G[v].push_back((edge) { u, dis });
	}



	dikstra(X);
	printf("%.15Lf\n", d[Y]);
	return 0;
}

0