結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー betit0919betit0919
提出日時 2020-05-29 21:47:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 2,124 bytes
コンパイル時間 1,431 ms
コンパイル使用メモリ 132,836 KB
実行使用メモリ 38,600 KB
最終ジャッジ日時 2024-11-06 03:31:48
合計ジャッジ時間 7,872 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 146 ms
19,072 KB
testcase_03 AC 175 ms
38,600 KB
testcase_04 AC 172 ms
35,504 KB
testcase_05 AC 131 ms
38,072 KB
testcase_06 AC 132 ms
37,620 KB
testcase_07 AC 42 ms
11,264 KB
testcase_08 AC 155 ms
32,688 KB
testcase_09 AC 15 ms
6,820 KB
testcase_10 AC 70 ms
16,512 KB
testcase_11 AC 49 ms
12,544 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 145 ms
22,512 KB
testcase_14 AC 178 ms
27,336 KB
testcase_15 AC 197 ms
29,792 KB
testcase_16 AC 84 ms
17,680 KB
testcase_17 AC 216 ms
31,808 KB
testcase_18 AC 56 ms
13,912 KB
testcase_19 AC 203 ms
29,788 KB
testcase_20 AC 45 ms
10,400 KB
testcase_21 AC 67 ms
16,980 KB
testcase_22 AC 188 ms
27,916 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 24 ms
10,496 KB
testcase_26 AC 108 ms
19,096 KB
testcase_27 AC 111 ms
18,728 KB
testcase_28 AC 195 ms
29,556 KB
testcase_29 AC 17 ms
8,064 KB
testcase_30 AC 207 ms
33,536 KB
testcase_31 AC 136 ms
26,392 KB
testcase_32 AC 85 ms
16,592 KB
testcase_33 AC 209 ms
32,764 KB
testcase_34 AC 62 ms
13,780 KB
testcase_35 AC 209 ms
32,012 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 314 ms
34,044 KB
testcase_42 AC 82 ms
12,928 KB
testcase_43 AC 148 ms
19,840 KB
testcase_44 AC 43 ms
9,472 KB
testcase_45 AC 145 ms
19,304 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>
#include <string>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <numeric>
#include <random>
#include <algorithm>
#include <functional>

using namespace std;
typedef long long ll;

const int INF = (1 << 30) - 1;
const ll INFLL= (1LL << 61) - 1;
const int MOD = 1000000007;
#define ALL(a) (a).begin(),(a).end()
#define rALL(a) (a).rbegin(),(a).rend()
#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)

using namespace std;

template<class T>
struct Edge {
  int to;
  T cost;
  Edge() {}
  Edge(int to, T cost) : to(to), cost(cost) {}
  bool operator>(const Edge &r) const { return this->cost > r.cost; }
};

template<class T>
vector<T> Dijkstra(const vector<vector<Edge<T>>> &edges, const int st) {

  const int V = (int)edges.size();
  const T inf = numeric_limits<T>::max() / 2;
  vector<T> cost(V, inf);
  cost[st] = 0;

  priority_queue<Edge<T>, vector<Edge<T>>, greater<Edge<T>>> pq;
  pq.emplace(st, cost[st]);

  while (!pq.empty()) {

    Edge<T> now(pq.top().to, pq.top().cost);
    pq.pop();

    if (cost[now.to] < now.cost) continue;
    for (const Edge<T> &e : edges[now.to]) {
      T tmp_cost = now.cost + e.cost;
      if (cost[e.to] > tmp_cost) {
        cost[e.to] = tmp_cost;
        pq.emplace(e.to, cost[e.to]);
      }
    }
  }

  return cost;
}

template<class T> inline bool chmin(T& a, T b) {
  if (a > b) {
    a = b;
    return true;
  }
  return false;
}
template<class T> inline bool chmax(T& a, T b) {
  if (a < b) {
    a = b;
    return true;
  }
  return false;
}


int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);

  int N,M,X,Y;
  cin>>N>>M>>X>>Y;
  X--;Y--;

  vector<long double>p(N),q(N);
  REP(i,N){
    cin>>p[i]>>q[i];
  }
  vector<vector<Edge<long double>>> edges(N);

  REP(i,M){
    int P,Q;
    cin>>P>>Q;
    P--;Q--;
    long double len=sqrtl((p[P]-p[Q])*(p[P]-p[Q]) + (q[P]-q[Q])*(q[P]-q[Q]));
    edges[P].emplace_back(Q,len);
    edges[Q].emplace_back(P,len);
  }

  auto ans = Dijkstra<long double>(edges,X);

  cout<<setprecision(15)<<ans[Y]<<endl;
}
0