結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー Moon0603Moon0603
提出日時 2020-05-29 21:52:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 1,934 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 207,948 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-04-23 21:47:23
合計ジャッジ時間 7,049 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 81 ms
15,776 KB
testcase_03 AC 113 ms
26,748 KB
testcase_04 AC 115 ms
26,360 KB
testcase_05 AC 92 ms
26,368 KB
testcase_06 AC 93 ms
26,580 KB
testcase_07 AC 28 ms
9,600 KB
testcase_08 AC 105 ms
26,624 KB
testcase_09 AC 11 ms
5,504 KB
testcase_10 AC 46 ms
13,568 KB
testcase_11 AC 32 ms
10,496 KB
testcase_12 AC 24 ms
10,880 KB
testcase_13 AC 89 ms
19,544 KB
testcase_14 AC 102 ms
21,748 KB
testcase_15 AC 117 ms
24,096 KB
testcase_16 AC 59 ms
15,532 KB
testcase_17 AC 131 ms
25,864 KB
testcase_18 AC 41 ms
12,544 KB
testcase_19 AC 118 ms
24,216 KB
testcase_20 AC 31 ms
9,000 KB
testcase_21 AC 49 ms
15,488 KB
testcase_22 AC 108 ms
22,164 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 23 ms
10,496 KB
testcase_26 AC 63 ms
15,240 KB
testcase_27 AC 66 ms
16,332 KB
testcase_28 AC 116 ms
24,924 KB
testcase_29 AC 13 ms
7,808 KB
testcase_30 AC 120 ms
24,960 KB
testcase_31 AC 80 ms
18,840 KB
testcase_32 AC 51 ms
13,292 KB
testcase_33 AC 127 ms
26,068 KB
testcase_34 AC 42 ms
12,408 KB
testcase_35 AC 122 ms
25,536 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 2 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 187 ms
27,904 KB
testcase_42 AC 47 ms
11,008 KB
testcase_43 AC 82 ms
16,512 KB
testcase_44 AC 28 ms
8,192 KB
testcase_45 AC 85 ms
16,256 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;

template<typename T>
class Graph
{
public:
    struct Edge
    {
        int to;
        T cost;
    };
    struct edge
    {
        int from;
        int to;
    };
    vector<vector<Edge>> g;
    vector<edge> edges;
    int n;
    Graph(int n)
            :n(n)
    {
        g.resize(n);
    }
    void Add(int from, int to, T cost)
    {
        g[from].push_back({to, cost});
        g[to].push_back({from, cost});
    }
    void Add_Edge(int from, int to)
    {
        edges.push_back({from, to});
    }
};

template<typename T>
vector<T> dijkstra(const Graph<T> &g, int start)
{
    using P = pair<T, int>;
    vector<T> dist(g.n, numeric_limits<T>::max());
    priority_queue<P, vector<P>, greater<P>> pq;
    dist[start] = 0;
    pq.push({dist[start], start});
    while (!pq.empty())
    {
        T expected = pq.top().first;
        int i = pq.top().second;
        pq.pop();
        if (dist[i] != expected)
        {
            continue;
        }
        for (auto e : g.g[i])
        {
            int j = e.to;
            T c = e.cost;
            if (dist[j] > dist[i] + c)
            {
                dist[j] = dist[i] + c;
                pq.push({dist[j], j});
            }
        }
    }
    return dist;
}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    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];
    }
    Graph<double> g(n);
    for (int i = 0; i < m; ++i)
    {
        int u, v;
        cin >> u >> v;
        --u;
        --v;
        double dist = sqrt((p[u] - p[v]) * (p[u] - p[v]) + (q[u] - q[v]) * (q[u] - q[v]));
        g.Add(u, v, dist);
        g.Add(v, u, dist);
    }
    vector<double> dist = dijkstra(g, x);
    cout << fixed << setprecision(17) << dist[y] << '\n';
    return 0;
}
0