結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー mmn15277198mmn15277198
提出日時 2022-05-02 16:46:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 1,075 ms
コンパイル使用メモリ 104,004 KB
実行使用メモリ 39,716 KB
最終ジャッジ日時 2024-07-01 20:36:12
合計ジャッジ時間 12,213 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 214 ms
19,200 KB
testcase_03 AC 329 ms
39,460 KB
testcase_04 AC 326 ms
39,588 KB
testcase_05 AC 256 ms
39,716 KB
testcase_06 AC 255 ms
39,588 KB
testcase_07 AC 80 ms
11,008 KB
testcase_08 AC 304 ms
32,664 KB
testcase_09 AC 29 ms
6,016 KB
testcase_10 AC 133 ms
16,512 KB
testcase_11 AC 92 ms
12,288 KB
testcase_12 AC 85 ms
14,872 KB
testcase_13 AC 244 ms
24,540 KB
testcase_14 AC 271 ms
26,156 KB
testcase_15 AC 317 ms
33,092 KB
testcase_16 AC 162 ms
19,712 KB
testcase_17 AC 344 ms
31,012 KB
testcase_18 AC 119 ms
17,088 KB
testcase_19 AC 317 ms
29,376 KB
testcase_20 AC 83 ms
10,984 KB
testcase_21 AC 148 ms
19,764 KB
testcase_22 AC 296 ms
27,760 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 6 ms
5,376 KB
testcase_25 AC 76 ms
12,360 KB
testcase_26 AC 178 ms
20,124 KB
testcase_27 AC 188 ms
20,880 KB
testcase_28 AC 318 ms
32,984 KB
testcase_29 AC 41 ms
8,548 KB
testcase_30 AC 324 ms
37,404 KB
testcase_31 AC 219 ms
24,964 KB
testcase_32 AC 139 ms
16,572 KB
testcase_33 AC 302 ms
32,332 KB
testcase_34 AC 124 ms
17,084 KB
testcase_35 AC 336 ms
31,980 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 5 ms
5,376 KB
testcase_38 AC 4 ms
5,376 KB
testcase_39 AC 5 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 461 ms
33,904 KB
testcase_42 AC 120 ms
12,800 KB
testcase_43 AC 231 ms
19,712 KB
testcase_44 AC 76 ms
9,344 KB
testcase_45 AC 224 ms
19,200 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;

const long double inf = 1001001001001001001;

long double f(long double x1, long double y1, long double x2, long double y2) {
  return sqrt((x1 - x2) * (x1 - x2) + (y1 - y2) * (y1 - y2));
}

int main() {
  cout << fixed << setprecision(15);
  int n, m;
  cin >> n >> m;
  int x, y;
  cin >> x >> y;
  x--;
  y--;
  vector<long double> a(n), b(n);
  for (int i = 0; i < n; i++) {
    cin >> a[i] >> b[i];
  }
  vector<vector<pair<long double, int> > > g(n);
  for (int i = 0; i < m; i++) {
    int p, q;
    cin >> p >> q;
    p--;
    q--;
    g[p].push_back(make_pair(f(a[p], b[p], a[q], b[q]), q));
    g[q].push_back(make_pair(f(a[p], b[p], a[q], b[q]), p));
  }
  vector<long double> d(n, -inf);
  priority_queue<pair<long double, int>, vector<pair<long double, int> >, greater<pair<long double, int> > > pq;
  pq.push(make_pair(0, x));
  while (!pq.empty()) {
    long double cost = pq.top().first;
    int v = pq.top().second;
    pq.pop();
    if (d[v] == -inf) {
      d[v] = cost;
      for (auto p : g[v]) {
        long double cost2 = p.first;
        int v2 = p.second;
        if (d[v2] == -inf) {
          pq.push(make_pair(cost + cost2, v2));
        }
      }
    }
  }
  cout << d[y] << endl;
  return 0;
}
0