結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー 沙耶花沙耶花
提出日時 2020-05-29 21:41:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 1,189 bytes
コンパイル時間 2,335 ms
コンパイル使用メモリ 216,076 KB
実行使用メモリ 22,540 KB
最終ジャッジ日時 2024-11-06 03:05:11
合計ジャッジ時間 10,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 199 ms
13,312 KB
testcase_03 AC 267 ms
21,700 KB
testcase_04 AC 264 ms
21,396 KB
testcase_05 AC 212 ms
22,392 KB
testcase_06 AC 213 ms
21,800 KB
testcase_07 AC 77 ms
8,448 KB
testcase_08 AC 287 ms
21,908 KB
testcase_09 AC 27 ms
6,816 KB
testcase_10 AC 127 ms
11,648 KB
testcase_11 AC 87 ms
8,960 KB
testcase_12 AC 49 ms
7,168 KB
testcase_13 AC 187 ms
14,568 KB
testcase_14 AC 222 ms
16,964 KB
testcase_15 AC 255 ms
18,692 KB
testcase_16 AC 121 ms
11,336 KB
testcase_17 AC 279 ms
19,744 KB
testcase_18 AC 92 ms
9,216 KB
testcase_19 AC 266 ms
19,016 KB
testcase_20 AC 68 ms
7,804 KB
testcase_21 AC 103 ms
10,624 KB
testcase_22 AC 241 ms
17,676 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 44 ms
7,040 KB
testcase_26 AC 143 ms
12,456 KB
testcase_27 AC 146 ms
12,312 KB
testcase_28 AC 246 ms
18,236 KB
testcase_29 AC 28 ms
6,816 KB
testcase_30 AC 265 ms
19,628 KB
testcase_31 AC 177 ms
16,036 KB
testcase_32 AC 114 ms
11,136 KB
testcase_33 AC 253 ms
21,584 KB
testcase_34 AC 90 ms
9,356 KB
testcase_35 AC 263 ms
19,932 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 5 ms
6,816 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 5 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 421 ms
22,540 KB
testcase_42 AC 107 ms
9,216 KB
testcase_43 AC 190 ms
13,568 KB
testcase_44 AC 66 ms
7,168 KB
testcase_45 AC 187 ms
13,412 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;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 10000000000000000.0

double eps = 1e-7;

int main(){
	
	int N,M,X,Y;
	cin>>N>>M>>X>>Y;
	
	X--;Y--;
	
	vector<double> x(N),y(N);
	for(int i=0;i<N;i++)cin>>x[i]>>y[i];
	
	vector<vector<pair<int,double>>> E(N,vector<pair<int,double>>());
	
	for(int i=0;i<M;i++){
		int u,v;
		cin>>u>>v;
		u--;v--;
		double d = sqrt(pow(x[u]-x[v],2.0)+pow(y[u]-y[v],2.0));
		E[u].emplace_back(v,d);
		E[v].emplace_back(u,d);
	}
	
	vector<double> dis(N,Inf);
	vector<bool> visited(N,false);
	priority_queue<pair<double,int>,vector<pair<double,int>>,greater<pair<double,int>>> Q;
	Q.emplace(0.0,X);
	dis[X] = 0.0;
	
	while(Q.size()!=0){
		double D1 = Q.top().first;
		int from = Q.top().second;
		Q.pop();
		if(visited[from])continue;
		if(abs(dis[from]-D1)>eps)continue;
		visited[from]=true;
		for(int i=0;i<E[from].size();i++){
			int to = E[from][i].first;
			if(visited[to])continue;
			double D2 = E[from][i].second;
			if(dis[to]>D1+D2+eps){
				dis[to] = D1+D2;
				Q.emplace(dis[to],to);
			}
		}
	}
	
	cout<<fixed<<setprecision(10)<<dis[Y]<<endl;
	
	return 0;
}
0