結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー tonyu0tonyu0
提出日時 2020-05-29 22:50:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,622 bytes
コンパイル時間 1,933 ms
コンパイル使用メモリ 136,824 KB
実行使用メモリ 22,540 KB
最終ジャッジ日時 2024-11-14 22:36:18
合計ジャッジ時間 7,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 116 ms
13,156 KB
testcase_03 AC 146 ms
21,988 KB
testcase_04 AC 145 ms
21,868 KB
testcase_05 AC 109 ms
21,868 KB
testcase_06 AC 110 ms
21,604 KB
testcase_07 AC 39 ms
8,296 KB
testcase_08 AC 144 ms
21,992 KB
testcase_09 AC 14 ms
5,248 KB
testcase_10 AC 65 ms
11,620 KB
testcase_11 AC 45 ms
9,064 KB
testcase_12 AC 20 ms
7,040 KB
testcase_13 AC 116 ms
15,336 KB
testcase_14 AC 127 ms
18,412 KB
testcase_15 AC 151 ms
19,460 KB
testcase_16 AC 69 ms
11,364 KB
testcase_17 AC 173 ms
20,864 KB
testcase_18 AC 45 ms
9,320 KB
testcase_19 AC 159 ms
19,816 KB
testcase_20 AC 37 ms
8,056 KB
testcase_21 AC 53 ms
10,624 KB
testcase_22 AC 147 ms
19,432 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 19 ms
7,168 KB
testcase_26 AC 76 ms
12,448 KB
testcase_27 AC 81 ms
12,776 KB
testcase_28 AC 142 ms
19,180 KB
testcase_29 AC 14 ms
5,888 KB
testcase_30 AC 156 ms
20,072 KB
testcase_31 AC 105 ms
15,848 KB
testcase_32 AC 65 ms
11,244 KB
testcase_33 AC 153 ms
20,388 KB
testcase_34 AC 49 ms
9,576 KB
testcase_35 AC 156 ms
20,456 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 3 ms
6,816 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 263 ms
22,540 KB
testcase_42 AC 60 ms
9,448 KB
testcase_43 AC 116 ms
13,688 KB
testcase_44 AC 37 ms
7,144 KB
testcase_45 AC 117 ms
13,416 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <iostream>
#include <algorithm>
#include <vector>
#include <iomanip>
#include <random>
#include <set>
#include <queue>
#define REP(i, n) for (int i = 0; i < (n); ++i)
using namespace std;
using ll = long long;
constexpr ll INF = 1LL << 60;

int n, m, x, y;

// O(|V|+|E|)log|V|)
void dijkstra(int s, vector<vector<pair<int, double>>> &g, vector<double> &dist)
{
  using Info = pair<double, int>;
  // init
  dist.assign(g.size(), 1e18);
  dist[s] = 0.0;
  priority_queue<Info, vector<Info>, greater<Info>> pq;
  pq.emplace(0.0, s);
  //
  // main
  while (!pq.empty())
  {
    double d = pq.top().first;
    int v = pq.top().second;
    pq.pop();
    if (dist[v] < d)
      continue;
    for (auto e : g[v])
    {
      if (dist[e.first] > dist[v] + e.second)
      {
        dist[e.first] = dist[v] + e.second;
        pq.emplace(dist[e.first], e.first);
      }
    }
  }
  //
}

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

  cin >> n >> m >> x >> y;
  --x, --y;
  vector<pair<double, double>> pos;
  REP(i, n)
  {
    double p, q;
    cin >> p >> q;
    pos.emplace_back(p, q);
  }

  vector<vector<pair<int, double>>> g(n);
  REP(i, m)
  {
    int p, q;
    cin >> p >> q;
    --p, --q;
    double X = pos[p].first - pos[q].first;
    double Y = pos[p].second - pos[q].second;
    double cost = sqrt(X * X + Y * Y);
    g[q].emplace_back(p, cost);
    g[p].emplace_back(q, cost);
  }

  vector<double> dist;
  dijkstra(x, g, dist);
  cout << fixed << setprecision(10) << dist[y] << '\n';

  return 0;
}
0