結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー iqueue02iqueue02
提出日時 2020-05-30 23:28:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 1,229 bytes
コンパイル時間 2,494 ms
コンパイル使用メモリ 215,140 KB
実行使用メモリ 36,436 KB
最終ジャッジ日時 2024-11-08 18:53:58
合計ジャッジ時間 14,579 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 213 ms
19,412 KB
testcase_03 AC 298 ms
34,132 KB
testcase_04 AC 291 ms
33,752 KB
testcase_05 AC 233 ms
33,492 KB
testcase_06 AC 241 ms
33,492 KB
testcase_07 AC 78 ms
11,096 KB
testcase_08 AC 298 ms
32,596 KB
testcase_09 AC 27 ms
5,844 KB
testcase_10 AC 133 ms
16,596 KB
testcase_11 AC 90 ms
12,376 KB
testcase_12 AC 53 ms
10,880 KB
testcase_13 AC 200 ms
24,660 KB
testcase_14 AC 231 ms
29,912 KB
testcase_15 AC 283 ms
31,316 KB
testcase_16 AC 129 ms
18,048 KB
testcase_17 AC 320 ms
33,492 KB
testcase_18 AC 87 ms
14,548 KB
testcase_19 AC 286 ms
31,572 KB
testcase_20 AC 72 ms
10,968 KB
testcase_21 AC 103 ms
16,772 KB
testcase_22 AC 250 ms
31,216 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 46 ms
10,496 KB
testcase_26 AC 146 ms
18,896 KB
testcase_27 AC 151 ms
19,796 KB
testcase_28 AC 261 ms
31,596 KB
testcase_29 AC 28 ms
7,936 KB
testcase_30 AC 293 ms
32,596 KB
testcase_31 AC 188 ms
25,048 KB
testcase_32 AC 117 ms
17,108 KB
testcase_33 AC 274 ms
36,436 KB
testcase_34 AC 93 ms
14,292 KB
testcase_35 AC 310 ms
33,236 KB
testcase_36 AC 4 ms
5,248 KB
testcase_37 AC 5 ms
5,248 KB
testcase_38 AC 4 ms
5,248 KB
testcase_39 AC 5 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 434 ms
34,004 KB
testcase_42 AC 109 ms
12,888 KB
testcase_43 AC 213 ms
19,544 KB
testcase_44 AC 69 ms
9,428 KB
testcase_45 AC 197 ms
19,288 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;
constexpr int INF = 2e9;
typedef long double ld;
int main() {
  int n, m;
  cin >> n >> m;
  int x, y;
  cin >> x >> y;
  x--; y--;
  vector<pair<ld, ld>> p;
  rep(i,n) {
    ld a, b;
    cin >> a >> b;
    p.emplace_back(make_pair(a, b));
  }
  vector<vector<pair<int, ld>>> g(n);
  rep(i,m) {
    int u, v;
    cin >> u >> v;
    u--; v--;
    ld s = (p[u].first - p[v].first), t = (p[u].second - p[v].second);
    ld d = sqrt((s * s) + (t * t));
    g[u].emplace_back(make_pair(v, d));
    g[v].emplace_back(make_pair(u, d));
  }

  vector<ld> dist(n, INF);
  priority_queue<pair<ld, int>, vector<pair<ld, int>>, greater<pair<ld, int>>> pq;
  pq.push(make_pair(0.0, x));
  dist[x] = 0.0;

  while (!pq.empty()) {
    auto t = pq.top();
    pq.pop();
    int u = t.second;
    if (t.first > dist[u]) continue;
    for (auto e : g[u]) {
      ld cost = e.second;
      int v = e.first;
      if (dist[v] > dist[u] + cost) {
        dist[v] = dist[u] + cost;
        pq.push(make_pair(dist[v], v));
      } 
    }
  }

  printf("%.12Lf\n", dist[y]);
  return 0;
}
0