結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー queeequeee
提出日時 2020-05-29 23:07:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 1,667 bytes
コンパイル時間 887 ms
コンパイル使用メモリ 93,136 KB
実行使用メモリ 18,988 KB
最終ジャッジ日時 2024-11-06 07:31:09
合計ジャッジ時間 8,720 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 164 ms
11,508 KB
testcase_03 AC 251 ms
16,784 KB
testcase_04 AC 254 ms
16,784 KB
testcase_05 AC 209 ms
16,788 KB
testcase_06 AC 210 ms
16,912 KB
testcase_07 AC 78 ms
7,680 KB
testcase_08 AC 288 ms
18,928 KB
testcase_09 AC 26 ms
6,816 KB
testcase_10 AC 128 ms
10,496 KB
testcase_11 AC 88 ms
8,320 KB
testcase_12 AC 45 ms
6,820 KB
testcase_13 AC 157 ms
10,752 KB
testcase_14 AC 192 ms
13,900 KB
testcase_15 AC 223 ms
15,368 KB
testcase_16 AC 104 ms
8,076 KB
testcase_17 AC 243 ms
16,204 KB
testcase_18 AC 75 ms
6,816 KB
testcase_19 AC 234 ms
16,228 KB
testcase_20 AC 62 ms
6,820 KB
testcase_21 AC 89 ms
6,820 KB
testcase_22 AC 211 ms
14,576 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 41 ms
6,820 KB
testcase_26 AC 124 ms
10,080 KB
testcase_27 AC 122 ms
9,332 KB
testcase_28 AC 216 ms
13,276 KB
testcase_29 AC 25 ms
6,816 KB
testcase_30 AC 230 ms
15,800 KB
testcase_31 AC 160 ms
13,280 KB
testcase_32 AC 103 ms
9,468 KB
testcase_33 AC 231 ms
18,428 KB
testcase_34 AC 79 ms
6,816 KB
testcase_35 AC 238 ms
15,504 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 4 ms
6,820 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 362 ms
18,988 KB
testcase_42 AC 98 ms
8,320 KB
testcase_43 AC 171 ms
11,776 KB
testcase_44 AC 62 ms
6,816 KB
testcase_45 AC 171 ms
11,648 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 <set>
#include <map>
#include <queue>
#include <cmath>
#include <functional>
#define DB puts("D")
#define pb push_back

using namespace std; using ll=long long; using ld=long double; const int INF=1e9; const ll LINF=1e18; const double dINF = 1e18; const ld ldINF = 1e18; const double EPS = 1e-6;
template<typename T, typename U, typename O> void caut(T a, U b, O c){cout<<"("<<a<<","<<b<<","<<c<<") ";}
template<typename T, typename U> void caut(T a, U b){cout<<"("<<a<<","<<b<<") ";}
template<typename T> void caut(T a){cout<<"("<<a<<") ";}
template<typename T> void input(T a[], int n){for(int i=0;i<n;i++) cin>>a[i];}
template<typename T, typename U> void input(T a[], U b[], int n){for(int i=0;i<n;i++) cin>>a[i]>>b[i];}
template<typename T, typename U, typename O> void input(T a[], U b[], O[], int n){for(int i=0;i<n;i++) cin>>a[i]>>b[i];}

using P=pair<double,int>;

int main() {
  int n,m; cin>>n>>m;
  int x,y; cin>>x>>y; x--; y--;
  double p[n],q[n]; input(p,q,n);
  vector<int> v[n];
  for(int i=0;i<m;i++) {
    int a,b; cin>>a>>b;; a--;b--;
    v[a].push_back(b); v[b].push_back(a);
  }
  
  priority_queue<P, vector<P>, greater<P>> que; que.push({0,x});
  double an[n]; fill(an,an+n,dINF); an[x]=0;
  while(!que.empty()) {
    P top = que.top(); que.pop();
    int f = top.second;
    if (top.first - EPS > an[top.second]) continue;
    for(int x : v[f]) {
      double dis = sqrt((p[x]-p[f])*(p[x]-p[f])+(q[x]-q[f])*(q[x]-q[f]));
      if (an[x] > an[f] + dis) {
        an[x] = an[f] + dis;
        que.push({an[x], x});
      }
    }
  }
  cout.precision(10);
  cout<<an[y]<<endl;
}
0