結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー どららどらら
提出日時 2020-05-29 21:58:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 1,453 bytes
コンパイル時間 1,769 ms
コンパイル使用メモリ 175,756 KB
実行使用メモリ 27,168 KB
最終ジャッジ日時 2024-11-06 04:34:32
合計ジャッジ時間 9,720 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,336 KB
testcase_01 AC 4 ms
8,772 KB
testcase_02 AC 161 ms
15,488 KB
testcase_03 AC 247 ms
27,168 KB
testcase_04 AC 242 ms
26,828 KB
testcase_05 AC 194 ms
25,864 KB
testcase_06 AC 193 ms
24,924 KB
testcase_07 AC 66 ms
12,340 KB
testcase_08 AC 242 ms
20,416 KB
testcase_09 AC 25 ms
10,308 KB
testcase_10 AC 107 ms
13,668 KB
testcase_11 AC 75 ms
12,064 KB
testcase_12 AC 71 ms
13,812 KB
testcase_13 AC 186 ms
17,960 KB
testcase_14 AC 203 ms
19,748 KB
testcase_15 AC 237 ms
23,344 KB
testcase_16 AC 123 ms
16,400 KB
testcase_17 AC 264 ms
20,748 KB
testcase_18 AC 94 ms
15,468 KB
testcase_19 AC 238 ms
19,856 KB
testcase_20 AC 64 ms
12,500 KB
testcase_21 AC 119 ms
16,840 KB
testcase_22 AC 222 ms
20,860 KB
testcase_23 AC 7 ms
8,732 KB
testcase_24 AC 8 ms
9,288 KB
testcase_25 AC 63 ms
12,620 KB
testcase_26 AC 133 ms
16,740 KB
testcase_27 AC 140 ms
16,664 KB
testcase_28 AC 240 ms
23,196 KB
testcase_29 AC 35 ms
10,564 KB
testcase_30 AC 245 ms
22,424 KB
testcase_31 AC 156 ms
18,072 KB
testcase_32 AC 100 ms
14,044 KB
testcase_33 AC 219 ms
21,864 KB
testcase_34 AC 95 ms
15,300 KB
testcase_35 AC 238 ms
21,652 KB
testcase_36 AC 6 ms
8,404 KB
testcase_37 AC 6 ms
8,492 KB
testcase_38 AC 6 ms
9,028 KB
testcase_39 AC 7 ms
8,896 KB
testcase_40 AC 5 ms
8,384 KB
testcase_41 AC 347 ms
21,028 KB
testcase_42 AC 89 ms
12,316 KB
testcase_43 AC 164 ms
14,880 KB
testcase_44 AC 56 ms
11,588 KB
testcase_45 AC 155 ms
15,196 KB
testcase_46 AC 4 ms
8,404 KB
testcase_47 AC 5 ms
9,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i,a,n) for(int i=(a); i<(int)(n); i++)
#define rep(i,n) REP(i,0,n)
#define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it)
#define ALLOF(c) (c).begin(), (c).end()
typedef long long ll;
typedef unsigned long long ull;

#define MAX_N 200005
struct Edge {
  int src, dest;
  double weight;
};
bool operator>(const Edge& a, const Edge& b){
  return a.weight > b.weight;
}
int N, M;
vector<Edge> G[MAX_N];
double cost[MAX_N];

void dijkstra(int start){
  rep(i,N+1){
    cost[i] = 1e100;
  }
  priority_queue<Edge,vector<Edge>,greater<Edge>> q;
  q.push((Edge){-1,start,0});

  while(!q.empty()){
    Edge e=q.top();
    q.pop();
    if(cost[e.dest] < 1e99) continue;
    cost[e.dest]=e.weight;
    FOR(it,G[e.dest])
      if(cost[it->dest] > 1e99) q.push((Edge){it->src,it->dest,e.weight+it->weight});
  }
}

int main(){
  cin >> N >> M;
  int X, Y;
  cin >> X >> Y;
  vector<pair<int,int>> v;
  v.emplace_back(0,0);
  rep(i,N){
    int p, q;
    cin >> p >> q;
    v.emplace_back(p,q);
  }
  rep(i,M){
    int p, q;
    cin >> p >> q;

    double px = v[p].first;
    double py = v[p].second;
    double qx = v[q].first;
    double qy = v[q].second;
    double dist = sqrt((px-qx)*(px-qx) + (py-qy)*(py-qy));
    G[p].push_back((Edge){p,q,dist});
    G[q].push_back((Edge){q,p,dist});
  }

  dijkstra(X);
  double ret = cost[Y];
  printf("%.12lf\n", ret);
  
  return 0;
}
0