結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー mmn15277198mmn15277198
提出日時 2022-05-02 20:52:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 459 ms / 2,000 ms
コード長 1,421 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 104,076 KB
実行使用メモリ 39,716 KB
最終ジャッジ日時 2024-07-02 00:59:28
合計ジャッジ時間 10,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 219 ms
19,072 KB
testcase_03 AC 328 ms
39,588 KB
testcase_04 AC 323 ms
39,716 KB
testcase_05 AC 252 ms
39,712 KB
testcase_06 AC 255 ms
39,580 KB
testcase_07 AC 80 ms
11,264 KB
testcase_08 AC 302 ms
32,640 KB
testcase_09 AC 27 ms
5,888 KB
testcase_10 AC 133 ms
16,512 KB
testcase_11 AC 93 ms
12,544 KB
testcase_12 AC 84 ms
15,252 KB
testcase_13 AC 255 ms
24,792 KB
testcase_14 AC 276 ms
26,288 KB
testcase_15 AC 315 ms
33,088 KB
testcase_16 AC 159 ms
19,844 KB
testcase_17 AC 348 ms
31,268 KB
testcase_18 AC 116 ms
17,092 KB
testcase_19 AC 319 ms
29,500 KB
testcase_20 AC 83 ms
10,984 KB
testcase_21 AC 145 ms
19,976 KB
testcase_22 AC 296 ms
27,764 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 74 ms
12,588 KB
testcase_26 AC 177 ms
20,384 KB
testcase_27 AC 188 ms
20,880 KB
testcase_28 AC 323 ms
33,368 KB
testcase_29 AC 41 ms
8,800 KB
testcase_30 AC 329 ms
37,404 KB
testcase_31 AC 215 ms
24,832 KB
testcase_32 AC 137 ms
16,828 KB
testcase_33 AC 308 ms
32,584 KB
testcase_34 AC 130 ms
17,088 KB
testcase_35 AC 338 ms
31,984 KB
testcase_36 AC 4 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 459 ms
33,964 KB
testcase_42 AC 125 ms
12,800 KB
testcase_43 AC 228 ms
19,840 KB
testcase_44 AC 73 ms
9,600 KB
testcase_45 AC 217 ms
19,328 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;

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

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, -1);
  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] == -1) {
      d[v] = cost;
      for (auto p : g[v]) {
        long double cost2 = p.first;
        int v2 = p.second;
        if (d[v2] == -1) {
          pq.push(make_pair(cost + cost2, v2));
        }
      } 
    }
  }
  cout << d[y] << endl;
  return 0;
}
0