結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー simkarensimkaren
提出日時 2020-05-30 15:14:22
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 1,550 bytes
コンパイル時間 2,680 ms
コンパイル使用メモリ 194,988 KB
実行使用メモリ 31,332 KB
最終ジャッジ日時 2024-11-07 17:41:01
合計ジャッジ時間 11,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 162 ms
17,024 KB
testcase_03 AC 258 ms
31,332 KB
testcase_04 AC 253 ms
30,944 KB
testcase_05 AC 209 ms
30,824 KB
testcase_06 AC 207 ms
30,948 KB
testcase_07 AC 65 ms
9,984 KB
testcase_08 AC 248 ms
28,520 KB
testcase_09 AC 22 ms
5,760 KB
testcase_10 AC 108 ms
14,588 KB
testcase_11 AC 75 ms
11,008 KB
testcase_12 AC 51 ms
10,880 KB
testcase_13 AC 170 ms
20,980 KB
testcase_14 AC 198 ms
24,360 KB
testcase_15 AC 238 ms
26,592 KB
testcase_16 AC 117 ms
17,160 KB
testcase_17 AC 264 ms
28,624 KB
testcase_18 AC 83 ms
13,536 KB
testcase_19 AC 242 ms
26,892 KB
testcase_20 AC 62 ms
9,684 KB
testcase_21 AC 101 ms
16,464 KB
testcase_22 AC 227 ms
25,424 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 5 ms
5,248 KB
testcase_25 AC 48 ms
10,496 KB
testcase_26 AC 125 ms
17,660 KB
testcase_27 AC 131 ms
17,656 KB
testcase_28 AC 229 ms
27,172 KB
testcase_29 AC 30 ms
7,808 KB
testcase_30 AC 240 ms
29,448 KB
testcase_31 AC 162 ms
22,912 KB
testcase_32 AC 101 ms
15,312 KB
testcase_33 AC 233 ms
29,844 KB
testcase_34 AC 85 ms
13,188 KB
testcase_35 AC 243 ms
29,480 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 4 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 363 ms
30,000 KB
testcase_42 AC 93 ms
11,648 KB
testcase_43 AC 171 ms
17,408 KB
testcase_44 AC 60 ms
8,704 KB
testcase_45 AC 165 ms
17,024 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3", "unroll-loops")

#include <bits/stdc++.h>

using namespace std;

#define ll long long
#define ld long double

template<typename T>
vector<T> dijkstra(int s, vector<vector<pair<int, T>>> &G){
    const int n = G.size();
    vector<T> d(n, numeric_limits<T>::max());
    vector<int> b(n, -1);
    priority_queue<pair<T, int>, vector<pair<T, int>>, greater<pair<T, int>>> q;
    d[s] = 0;
    q.emplace(d[s], s);
    while (!q.empty()){
        pair<T, int> p = q.top();
        q.pop();
        int v = p.second;
        if (d[v] < p.first) continue;
        for (auto& e : G[v]){
            int u = e.first;
            T c = e.second;
            if (d[u] > d[v] + c){
                d[u] = d[v] + c;
                b[u] = v;
                q.emplace(d[u], u);
            }
        }
    }
    return d;
}

int N, M;
int X, Y;
vector<pair<int, int>> pq;

void input(void){
    cin >> N >> M;
    pq.resize(N);
    cin >> X >> Y;
    --X, --Y;
    for (int i = 0; i < N; ++i)
        cin >> pq[i].first >> pq[i].second;
}

ld dist(int a, int b){
    int dx = pq[a].first - pq[b].first;
    int dy = pq[a].second - pq[b].second;
    return sqrtl(dx * dx + dy * dy);
}

int main(void){
    input();
    vector<vector<pair<int, ld>>> g(N);
    for (int i = 0; i < M; ++i){
        int P, Q; cin >> P >> Q;
        --P, --Q;
        ld cost = dist(P, Q);
        g[P].emplace_back(Q, cost);
        g[Q].emplace_back(P, cost);
    }
    auto d = dijkstra(X, g);
    cout << setprecision(15) << d[Y] << endl;
    return 0;
}
0