結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー Moon0603Moon0603
提出日時 2020-06-11 16:36:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 1,531 bytes
コンパイル時間 2,709 ms
コンパイル使用メモリ 215,560 KB
実行使用メモリ 34,568 KB
最終ジャッジ日時 2024-06-24 03:01:32
合計ジャッジ時間 8,545 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 110 ms
19,072 KB
testcase_03 AC 133 ms
32,860 KB
testcase_04 AC 134 ms
31,548 KB
testcase_05 AC 109 ms
31,752 KB
testcase_06 AC 108 ms
32,696 KB
testcase_07 AC 32 ms
11,392 KB
testcase_08 AC 117 ms
33,852 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 53 ms
16,896 KB
testcase_11 AC 37 ms
12,544 KB
testcase_12 AC 24 ms
9,984 KB
testcase_13 AC 109 ms
21,136 KB
testcase_14 AC 131 ms
24,688 KB
testcase_15 AC 157 ms
27,572 KB
testcase_16 AC 68 ms
15,760 KB
testcase_17 AC 173 ms
29,552 KB
testcase_18 AC 47 ms
12,416 KB
testcase_19 AC 159 ms
28,220 KB
testcase_20 AC 36 ms
10,112 KB
testcase_21 AC 55 ms
14,592 KB
testcase_22 AC 146 ms
26,112 KB
testcase_23 AC 3 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 21 ms
9,472 KB
testcase_26 AC 79 ms
17,728 KB
testcase_27 AC 82 ms
17,344 KB
testcase_28 AC 146 ms
26,568 KB
testcase_29 AC 15 ms
7,424 KB
testcase_30 AC 157 ms
28,716 KB
testcase_31 AC 107 ms
22,376 KB
testcase_32 AC 68 ms
15,368 KB
testcase_33 AC 149 ms
29,264 KB
testcase_34 AC 50 ms
12,796 KB
testcase_35 AC 160 ms
29,156 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 4 ms
6,940 KB
testcase_40 AC 2 ms
6,944 KB
testcase_41 AC 261 ms
34,568 KB
testcase_42 AC 63 ms
12,928 KB
testcase_43 AC 117 ms
19,712 KB
testcase_44 AC 34 ms
9,216 KB
testcase_45 AC 111 ms
19,304 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

struct Edge
{
    int to;
    double cost;
};

template<typename T>
vector<T> dijkstra(const vector<vector<Edge>> g, int start)
{
    int n = (int) g.size();
    using P = pair<T, int>;
    vector<T> dist(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 (Edge e : 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];
    }
    vector<vector<Edge>> g(n);
    for (int i = 0; i < m; ++i)
    {
        int P, Q;
        cin >> P >> Q;
        --P;
        --Q;
        double dist = sqrt((p[P] - p[Q]) * (p[P] - p[Q]) + (q[P] - q[Q]) * (q[P] - q[Q]));
        g[P].push_back({Q, dist});
        g[Q].push_back({P, dist});
    }
    vector<double> dist = dijkstra<double>(g, x);
    cout << fixed << setprecision(17) << dist[y] << '\n';
    return 0;
}
0