結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー 0w10w1
提出日時 2020-11-15 17:16:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 216,288 KB
実行使用メモリ 21,020 KB
最終ジャッジ日時 2024-07-23 01:17:08
合計ジャッジ時間 9,810 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 136 ms
10,752 KB
testcase_03 AC 174 ms
18,628 KB
testcase_04 AC 180 ms
17,980 KB
testcase_05 AC 110 ms
17,852 KB
testcase_06 AC 111 ms
17,732 KB
testcase_07 AC 33 ms
7,296 KB
testcase_08 AC 125 ms
17,280 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 55 ms
9,600 KB
testcase_11 AC 38 ms
7,680 KB
testcase_12 AC 25 ms
5,376 KB
testcase_13 AC 124 ms
13,056 KB
testcase_14 AC 160 ms
15,872 KB
testcase_15 AC 202 ms
19,072 KB
testcase_16 AC 81 ms
9,216 KB
testcase_17 AC 237 ms
19,200 KB
testcase_18 AC 52 ms
7,296 KB
testcase_19 AC 183 ms
17,280 KB
testcase_20 AC 42 ms
7,040 KB
testcase_21 AC 58 ms
7,040 KB
testcase_22 AC 178 ms
17,152 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 22 ms
5,376 KB
testcase_26 AC 89 ms
10,624 KB
testcase_27 AC 89 ms
10,624 KB
testcase_28 AC 162 ms
15,232 KB
testcase_29 AC 16 ms
5,376 KB
testcase_30 AC 191 ms
17,972 KB
testcase_31 AC 136 ms
14,812 KB
testcase_32 AC 79 ms
10,752 KB
testcase_33 AC 206 ms
21,020 KB
testcase_34 AC 54 ms
7,680 KB
testcase_35 AC 180 ms
18,048 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 243 ms
17,400 KB
testcase_42 AC 56 ms
7,808 KB
testcase_43 AC 115 ms
10,880 KB
testcase_44 AC 36 ms
6,400 KB
testcase_45 AC 114 ms
10,752 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() {
  ios::sync_with_stdio(false);

  int N, M; { cin >> N >> M; }
  int Gx, Gy; { cin >> Gx >> Gy; --Gx, --Gy; }
  vector<int> X(N), Y(N); { for (int i = 0; i < N; ++i) cin >> X[i] >> Y[i]; }
  vector<vector<int>> G(N); {
    for (int i = 0; i < M; ++i) {
      int P, Q; { cin >> P >> Q; --P, --Q; }
      G[P].push_back(Q);
      G[Q].push_back(P);
    }
  }

  vector<double> dis(N, 1e20); {
    set<tuple<double, int>> bag;
    bag.emplace(dis[Gx] = 0, Gx);
    while (bag.size()) {
      double d;
      int u;
      tie(d, u) = *bag.begin();
      bag.erase(bag.begin());
      if (d != dis[u]) continue;
      for (int v : G[u]) {
        double nd = d + hypot(X[u] - X[v], Y[u] - Y[v]);
        if (nd < dis[v]) bag.emplace(dis[v] = nd, v);
      }
    }
  }

  cout << fixed << setprecision(9) << dis[Gy] << endl;
}
0