結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー merom686merom686
提出日時 2020-05-29 22:04:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 289 ms / 2,000 ms
コード長 1,861 bytes
コンパイル時間 1,095 ms
コンパイル使用メモリ 110,824 KB
実行使用メモリ 16,156 KB
最終ジャッジ日時 2024-11-06 04:49:18
合計ジャッジ時間 7,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 125 ms
9,088 KB
testcase_03 AC 208 ms
14,836 KB
testcase_04 AC 219 ms
14,960 KB
testcase_05 AC 162 ms
14,956 KB
testcase_06 AC 164 ms
14,964 KB
testcase_07 AC 59 ms
6,816 KB
testcase_08 AC 225 ms
14,160 KB
testcase_09 AC 20 ms
6,816 KB
testcase_10 AC 97 ms
8,320 KB
testcase_11 AC 67 ms
6,824 KB
testcase_12 AC 50 ms
6,816 KB
testcase_13 AC 145 ms
11,112 KB
testcase_14 AC 155 ms
12,904 KB
testcase_15 AC 187 ms
13,796 KB
testcase_16 AC 92 ms
9,056 KB
testcase_17 AC 215 ms
14,676 KB
testcase_18 AC 75 ms
7,552 KB
testcase_19 AC 193 ms
13,788 KB
testcase_20 AC 54 ms
6,816 KB
testcase_21 AC 92 ms
8,428 KB
testcase_22 AC 179 ms
13,168 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 44 ms
6,820 KB
testcase_26 AC 96 ms
8,856 KB
testcase_27 AC 101 ms
9,668 KB
testcase_28 AC 173 ms
13,840 KB
testcase_29 AC 27 ms
6,820 KB
testcase_30 AC 175 ms
13,960 KB
testcase_31 AC 136 ms
11,432 KB
testcase_32 AC 77 ms
7,844 KB
testcase_33 AC 188 ms
16,156 KB
testcase_34 AC 72 ms
7,552 KB
testcase_35 AC 182 ms
14,092 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 4 ms
6,820 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 289 ms
14,160 KB
testcase_42 AC 81 ms
6,824 KB
testcase_43 AC 134 ms
9,324 KB
testcase_44 AC 46 ms
6,820 KB
testcase_45 AC 143 ms
9,108 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <queue>
#include <iomanip>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;
using ll = long long;

struct Graph {
    static constexpr double INF = 1e+100;
    struct VertexQ {
        bool operator<(const VertexQ &o) const {
            return c > o.c; // 逆
        }
        int i;
        double c;
    };
    struct Vertex { int n; double c; };
    struct Edge { int i, n; double c; };
    Graph(int n, int m) : v(n, { -1, INF }), e(m), n(n), m(0) {}
    void add_edge(int i, int j, double c) {
        e[m] = { j, v[i].n, c };
        v[i].n = m;
        m++;
    }
    void dijkstra(int i, int j) {
        for (int i = 0; i < n; i++) v[i].c = INF;
        priority_queue<VertexQ> q;
        q.push({ i, v[i].c = 0 });
        while (!q.empty()) {
            auto p = q.top(); q.pop();
            if (p.i == j) break;
            if (p.c > v[p.i].c) continue;
            for (int j = v[p.i].n; j >= 0; j = e[j].n) {
                Edge &o = e[j];
                double c = p.c + o.c;
                if (c < v[o.i].c) q.push({ o.i, v[o.i].c = c });
            }
        }
    }
    vector<Vertex> v;
    vector<Edge> e;
    int n, m;
};

int main() {
    int n, m;
    cin >> n >> m;
    
    Graph g(n, m * 2);

    int x, y;
    cin >> x >> y;
    x--; y--;

    vector<pair<int, int>> p(n);
    for (int i = 0; i < n; i++) {
        int x, y;
        cin >> x >> y;
        p[i] = { x, y };
    }

    for (int i = 0; i < m; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;

        double c = hypot(p[a].first - p[b].first, p[a].second - p[b].second);
        g.add_edge(a, b, c);
        g.add_edge(b, a, c);
    }

    g.dijkstra(x, y);

    cout << fixed << setprecision(9) << g.v[y].c << '\n';

    return 0;
}
0