結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー MisterMister
提出日時 2020-08-02 14:42:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 2,472 bytes
コンパイル時間 1,069 ms
コンパイル使用メモリ 113,752 KB
実行使用メモリ 40,248 KB
最終ジャッジ日時 2024-07-18 13:26:14
合計ジャッジ時間 7,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 107 ms
18,944 KB
testcase_03 AC 156 ms
40,248 KB
testcase_04 AC 166 ms
39,992 KB
testcase_05 AC 134 ms
39,740 KB
testcase_06 AC 123 ms
39,740 KB
testcase_07 AC 39 ms
11,136 KB
testcase_08 AC 140 ms
32,584 KB
testcase_09 AC 14 ms
6,144 KB
testcase_10 AC 64 ms
16,476 KB
testcase_11 AC 44 ms
12,416 KB
testcase_12 AC 24 ms
11,008 KB
testcase_13 AC 112 ms
23,132 KB
testcase_14 AC 130 ms
28,196 KB
testcase_15 AC 158 ms
31,564 KB
testcase_16 AC 72 ms
17,872 KB
testcase_17 AC 168 ms
33,604 KB
testcase_18 AC 51 ms
14,036 KB
testcase_19 AC 159 ms
30,400 KB
testcase_20 AC 42 ms
10,908 KB
testcase_21 AC 57 ms
16,948 KB
testcase_22 AC 148 ms
28,184 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 22 ms
10,496 KB
testcase_26 AC 84 ms
21,524 KB
testcase_27 AC 93 ms
19,096 KB
testcase_28 AC 155 ms
31,044 KB
testcase_29 AC 16 ms
8,028 KB
testcase_30 AC 159 ms
34,344 KB
testcase_31 AC 108 ms
27,032 KB
testcase_32 AC 70 ms
18,772 KB
testcase_33 AC 160 ms
34,852 KB
testcase_34 AC 54 ms
14,228 KB
testcase_35 AC 173 ms
34,184 KB
testcase_36 AC 3 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 217 ms
34,096 KB
testcase_42 AC 59 ms
12,928 KB
testcase_43 AC 105 ms
19,548 KB
testcase_44 AC 36 ms
9,600 KB
testcase_45 AC 102 ms
19,344 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>
#include <vector>
#include <tuple>
#include <queue>
#include <limits>

template <class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;

template <class Cost = int>
struct Edge {
    int src, dst;
    Cost cost;
    Edge(int src = -1, int dst = -1, Cost cost = 1)
        : src(src), dst(dst), cost(cost){};

    bool operator<(const Edge<Cost>& e) const { return this->cost < e.cost; }
    bool operator>(const Edge<Cost>& e) const { return this->cost > e.cost; }
};

template <class Cost = int>
struct Graph {
    std::vector<std::vector<Edge<Cost>>> graph;

    Graph(int n = 0) : graph(n) {}

    void span(bool direct, int src, int dst, Cost cost = 1) {
        graph[src].emplace_back(src, dst, cost);
        if (!direct) graph[dst].emplace_back(dst, src, cost);
    }

    int size() const { return graph.size(); }
    void clear() { graph.clear(); }
    void resize(int n) { graph.resize(n); }

    std::vector<Edge<Cost>>& operator[](int v) { return graph[v]; }
    std::vector<Edge<Cost>> operator[](int v) const { return graph[v]; }
};

template <class Cost>
std::vector<Cost> dijkstra(const Graph<Cost>& graph, int s) {
    constexpr Cost INF = std::numeric_limits<Cost>::max();

    std::vector<Cost> dist(graph.size(), INF);
    dist[s] = 0;
    MinHeap<std::pair<Cost, int>> que;
    que.emplace(0, s);

    while (!que.empty()) {
        int v;
        Cost d;
        std::tie(d, v) = que.top();
        que.pop();
        if (d > dist[v]) continue;

        for (const auto& e : graph[v]) {
            if (dist[e.dst] <= dist[v] + e.cost) continue;
            dist[e.dst] = dist[v] + e.cost;
            que.emplace(dist[e.dst], e.dst);
        }
    }

    return dist;
}

using ldouble = long double;

void solve() {
    int n, m, s, t;
    std::cin >> n >> m >> s >> t;
    --s, --t;

    std::vector<std::pair<ldouble, ldouble>> ps(n);
    for (auto& p : ps) std::cin >> p.first >> p.second;

    Graph<ldouble> graph(n);
    while (m--) {
        int u, v;
        std::cin >> u >> v;
        --u, --v;

        auto c = std::hypot(ps[u].first - ps[v].first, ps[u].second - ps[v].second);
        graph.span(false, u, v, c);
    }

    auto ds = dijkstra(graph, s);
    std::cout << std::fixed << std::setprecision(10)
              << ds[t] << "\n";
}

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

    solve();

    return 0;
}
0