結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー SSRSSSRS
提出日時 2020-11-06 20:47:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 374 ms / 2,000 ms
コード長 963 bytes
コンパイル時間 1,864 ms
コンパイル使用メモリ 177,484 KB
実行使用メモリ 22,980 KB
最終ジャッジ日時 2024-07-22 11:56:43
合計ジャッジ時間 9,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 174 ms
12,416 KB
testcase_03 AC 263 ms
22,848 KB
testcase_04 AC 253 ms
22,852 KB
testcase_05 AC 201 ms
22,980 KB
testcase_06 AC 203 ms
22,976 KB
testcase_07 AC 65 ms
7,808 KB
testcase_08 AC 247 ms
20,224 KB
testcase_09 AC 23 ms
5,376 KB
testcase_10 AC 108 ms
11,008 KB
testcase_11 AC 74 ms
8,576 KB
testcase_12 AC 72 ms
9,288 KB
testcase_13 AC 185 ms
14,792 KB
testcase_14 AC 209 ms
16,068 KB
testcase_15 AC 243 ms
19,568 KB
testcase_16 AC 133 ms
12,092 KB
testcase_17 AC 270 ms
18,788 KB
testcase_18 AC 93 ms
10,424 KB
testcase_19 AC 276 ms
18,012 KB
testcase_20 AC 65 ms
7,704 KB
testcase_21 AC 125 ms
11,856 KB
testcase_22 AC 229 ms
16,840 KB
testcase_23 AC 4 ms
5,376 KB
testcase_24 AC 5 ms
5,376 KB
testcase_25 AC 63 ms
7,916 KB
testcase_26 AC 135 ms
12,668 KB
testcase_27 AC 143 ms
12,908 KB
testcase_28 AC 247 ms
19,468 KB
testcase_29 AC 34 ms
6,140 KB
testcase_30 AC 253 ms
19,936 KB
testcase_31 AC 167 ms
15,188 KB
testcase_32 AC 109 ms
10,608 KB
testcase_33 AC 235 ms
19,348 KB
testcase_34 AC 98 ms
10,656 KB
testcase_35 AC 254 ms
19,016 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 4 ms
5,376 KB
testcase_39 AC 4 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 374 ms
20,992 KB
testcase_42 AC 102 ms
8,832 KB
testcase_43 AC 180 ms
12,800 KB
testcase_44 AC 59 ms
7,040 KB
testcase_45 AC 173 ms
12,544 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
  cout << fixed << setprecision(5);
  int N, M;
  cin >> N >> M;
  int X, Y;
  cin >> X >> Y;
  X--;
  Y--;
  vector<int> p(N), q(N);
  for (int i = 0; i < N; i++){
    cin >> p[i] >> q[i];
  }
  vector<vector<pair<double, int>>> E(N);
  for (int i = 0; i < M; i++){
    int P, Q;
    cin >> P >> Q;
    P--;
    Q--;
    double d = hypot(p[Q] - p[P], q[Q] - q[P]);
    E[P].push_back(make_pair(d, Q));
    E[Q].push_back(make_pair(d, P));
  }
  vector<double> d(N, -1);
  priority_queue<pair<double, int>, vector<pair<double, int>>, greater<pair<double, int>>> pq;
  pq.push(make_pair(0, X));
  while (!pq.empty()){
    double c = pq.top().first;
    int v = pq.top().second;
    pq.pop();
    if (d[v] == -1){
      d[v] = c;
      for (auto P : E[v]){
        int w = P.second;
        if (d[w] == -1){
          pq.push(make_pair(c + P.first, w));
        }
      }
    }
  }
  cout << d[Y] << endl;
}
0