結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー kmjpkmjp
提出日時 2020-05-30 00:04:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 233 ms / 2,000 ms
コード長 1,285 bytes
コンパイル時間 2,427 ms
コンパイル使用メモリ 210,352 KB
実行使用メモリ 20,188 KB
最終ジャッジ日時 2024-11-06 09:30:59
合計ジャッジ時間 7,784 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,796 KB
testcase_01 AC 4 ms
9,924 KB
testcase_02 AC 103 ms
13,416 KB
testcase_03 AC 127 ms
17,812 KB
testcase_04 AC 128 ms
17,796 KB
testcase_05 AC 90 ms
17,620 KB
testcase_06 AC 88 ms
18,040 KB
testcase_07 AC 32 ms
11,068 KB
testcase_08 AC 109 ms
17,604 KB
testcase_09 AC 13 ms
10,568 KB
testcase_10 AC 50 ms
13,252 KB
testcase_11 AC 36 ms
12,228 KB
testcase_12 AC 24 ms
10,692 KB
testcase_13 AC 103 ms
14,476 KB
testcase_14 AC 128 ms
16,000 KB
testcase_15 AC 150 ms
16,520 KB
testcase_16 AC 64 ms
11,604 KB
testcase_17 AC 165 ms
16,924 KB
testcase_18 AC 45 ms
11,712 KB
testcase_19 AC 151 ms
16,988 KB
testcase_20 AC 40 ms
11,728 KB
testcase_21 AC 52 ms
12,020 KB
testcase_22 AC 139 ms
15,908 KB
testcase_23 AC 5 ms
10,036 KB
testcase_24 AC 5 ms
9,924 KB
testcase_25 AC 23 ms
10,952 KB
testcase_26 AC 75 ms
12,688 KB
testcase_27 AC 76 ms
13,364 KB
testcase_28 AC 135 ms
16,244 KB
testcase_29 AC 16 ms
9,324 KB
testcase_30 AC 148 ms
17,328 KB
testcase_31 AC 101 ms
15,764 KB
testcase_32 AC 64 ms
12,280 KB
testcase_33 AC 146 ms
20,188 KB
testcase_34 AC 45 ms
10,704 KB
testcase_35 AC 144 ms
16,960 KB
testcase_36 AC 4 ms
8,612 KB
testcase_37 AC 5 ms
8,764 KB
testcase_38 AC 5 ms
9,924 KB
testcase_39 AC 6 ms
9,924 KB
testcase_40 AC 5 ms
9,800 KB
testcase_41 AC 233 ms
17,740 KB
testcase_42 AC 56 ms
12,484 KB
testcase_43 AC 108 ms
13,892 KB
testcase_44 AC 32 ms
11,336 KB
testcase_45 AC 102 ms
14,144 KB
testcase_46 AC 4 ms
9,920 KB
testcase_47 AC 4 ms
9,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

int N,M;
int S,T;
int X[202020],Y[202020];
vector<int> E[202020];
double D[202020];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>S>>T;
	S--,T--;
	FOR(i,N) cin>>X[i]>>Y[i];
	FOR(i,M) {
		cin>>x>>y;
		E[x-1].push_back(y-1);
		E[y-1].push_back(x-1);
	}
	
	FOR(i,N) D[i]=1e9;
	D[S]=0;
	priority_queue<pair<double,int>> Q;
	Q.push({0,S});
	while(Q.size()) {
		double co=-Q.top().first;
		int cur=Q.top().second;
		Q.pop();
		if(D[cur]!=co) continue;
		FORR(e,E[cur]) {
			double d=co+hypot(X[cur]-X[e],Y[cur]-Y[e]);
			if(D[e]>d) {
				D[e]=d;
				Q.push({-d,e});
			}
		}
		
	}
	_P("%.12lf\n",D[T]);
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0