結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー finefine
提出日時 2020-05-29 21:37:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 1,891 bytes
コンパイル時間 2,288 ms
コンパイル使用メモリ 179,940 KB
実行使用メモリ 34,956 KB
最終ジャッジ日時 2024-11-06 02:51:33
合計ジャッジ時間 8,601 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 139 ms
17,664 KB
testcase_03 AC 179 ms
33,500 KB
testcase_04 AC 175 ms
31,928 KB
testcase_05 AC 127 ms
32,848 KB
testcase_06 AC 129 ms
34,956 KB
testcase_07 AC 42 ms
10,368 KB
testcase_08 AC 155 ms
29,740 KB
testcase_09 AC 16 ms
6,816 KB
testcase_10 AC 74 ms
15,104 KB
testcase_11 AC 50 ms
11,392 KB
testcase_12 AC 29 ms
10,880 KB
testcase_13 AC 143 ms
21,540 KB
testcase_14 AC 167 ms
24,908 KB
testcase_15 AC 198 ms
28,872 KB
testcase_16 AC 89 ms
17,428 KB
testcase_17 AC 221 ms
29,636 KB
testcase_18 AC 56 ms
13,716 KB
testcase_19 AC 206 ms
27,796 KB
testcase_20 AC 47 ms
9,980 KB
testcase_21 AC 67 ms
16,592 KB
testcase_22 AC 186 ms
26,636 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 4 ms
6,820 KB
testcase_25 AC 26 ms
10,496 KB
testcase_26 AC 99 ms
18,068 KB
testcase_27 AC 104 ms
18,016 KB
testcase_28 AC 187 ms
28,180 KB
testcase_29 AC 18 ms
7,936 KB
testcase_30 AC 216 ms
30,480 KB
testcase_31 AC 138 ms
25,108 KB
testcase_32 AC 84 ms
15,924 KB
testcase_33 AC 206 ms
30,624 KB
testcase_34 AC 65 ms
13,580 KB
testcase_35 AC 209 ms
30,860 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 4 ms
6,820 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 320 ms
31,024 KB
testcase_42 AC 77 ms
12,032 KB
testcase_43 AC 147 ms
18,432 KB
testcase_44 AC 47 ms
8,960 KB
testcase_45 AC 145 ms
17,664 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using ll = long double;

constexpr char newl = '\n';

struct State {
    int at;
    ll cost;
    //int prev;
    State(int at, ll cost/*, int prev*/) : at(at), cost(cost)/*, prev(prev)*/ {}
    bool operator>(const State& s) const {
        return cost > s.cost;
    }
};

struct Edge {
    int to;
    ll cost;
    Edge(int to, ll cost) : to(to), cost(cost) {}
};

using Graph = vector< vector<Edge> >; //隣接リスト

const ll INF = 1e15;
//const int NONE = -1;

//sは始点、mincは最短経路のコスト、prevsは最短経路をたどる際の前の頂点
void dijkstra(int s, const Graph& graph, vector<ll>& minc/*, vector<int>& prevs*/){
    minc.assign(graph.size(), INF);
    //prevs.assign(graph.size(), NONE);

    priority_queue<State, vector<State>, greater<State> > pq;
    pq.emplace(s, 0/*, NONE*/);
    minc[s] = 0;

    while(!pq.empty()) {
        State cur = pq.top();
        pq.pop();
        if (minc[cur.at] < cur.cost) continue;

        for(const Edge& e : graph[cur.at]) {
            ll cost = cur.cost + e.cost;
            if (minc[e.to] <= cost) continue;
            minc[e.to] = cost;
            //prevs[e.to] = cur.at;
            pq.emplace(e.to, cost/*, cur.at*/);
        }
    }
}

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

    int n, m;
    cin >> n >> m;

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

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

    Graph g(n);

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

        ll cost = hypot(p[u] - p[v], q[u] - q[v]);
        g[u].emplace_back(v, cost);
        g[v].emplace_back(u, cost);
    }

    vector<ll> minc;
    dijkstra(x, g, minc);

    cout << fixed << setprecision(15) << minc[y] << newl;
    return 0;
}
0