結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー umezoumezo
提出日時 2020-05-31 03:46:37
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,393 bytes
コンパイル時間 4,024 ms
コンパイル使用メモリ 260,624 KB
実行使用メモリ 53,556 KB
最終ジャッジ日時 2024-11-15 18:44:08
合計ジャッジ時間 97,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
20,096 KB
testcase_01 AC 12 ms
37,248 KB
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 156 ms
24,192 KB
testcase_08 AC 570 ms
53,556 KB
testcase_09 AC 58 ms
21,632 KB
testcase_10 AC 255 ms
45,836 KB
testcase_11 AC 178 ms
24,960 KB
testcase_12 AC 81 ms
44,024 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 14 ms
20,352 KB
testcase_24 AC 15 ms
36,208 KB
testcase_25 AC 76 ms
23,424 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 33 ms
20,224 KB
testcase_37 AC 221 ms
45,568 KB
testcase_38 AC 65 ms
20,224 KB
testcase_39 AC 230 ms
34,304 KB
testcase_40 AC 15 ms
20,352 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 AC 10 ms
14,848 KB
testcase_47 AC 10 ms
37,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _GLIBCXX_DEBUG
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define ALL(v) v.begin(), v.end()
typedef long long ll;

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; }

#include <bits/stdc++.h>
using namespace std;

#define MAX 200010
#define INF 1000100100
vector<pair<int,double>> vec[MAX];
double d[MAX],color[MAX],p[MAX],q[MAX];
int n,m,x,y;

void dijk(int s){
  priority_queue<pair<double,int>> pq;
  for(int i=1;i<=n;i++){
    d[i]=INF;
    color[i]=0;
  }
  d[s]=0;
  pq.push(make_pair(0,s));
  
  while(!pq.empty()){
    pair<double,int> f=pq.top(); pq.pop();
    int u=f.second;
    color[u]=2;
    
    if(d[u]<f.first*(-1)) continue;
    
    for(int j=0;j<vec[u].size();j++){
      int v=vec[u][j].first;
      if(color[v]==2) continue;
      if(d[v] > d[u]+vec[u][j].second){
        d[v]=d[u]+vec[u][j].second;
        pq.push(make_pair(d[v]*(-1),v));
      }
    }
  }
                     
}


int main() {
  cin>>n>>m>>x>>y;
  
  int a,b;
  double c;
  rep(i,n) cin>>p[i+1]>>q[i+1];
  rep(i,m){
    cin>>a>>b;
    
    c=sqrt((p[a]-p[b])*(p[a]-p[b])+(q[a]-q[b])*(q[a]-q[b]));
    vec[a].push_back(make_pair(b,c));
    vec[b].push_back(make_pair(a,c));
  }
  
  dijk(x);
  cout<< fixed << setprecision(15) <<d[y]<<endl;
  
  return 0;
}
0