結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー hedwig100hedwig100
提出日時 2020-05-29 21:56:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 376 ms / 2,000 ms
コード長 1,498 bytes
コンパイル時間 1,895 ms
コンパイル使用メモリ 177,716 KB
実行使用メモリ 21,016 KB
最終ジャッジ日時 2024-11-06 04:15:06
合計ジャッジ時間 9,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 169 ms
12,332 KB
testcase_03 AC 234 ms
20,168 KB
testcase_04 AC 234 ms
20,724 KB
testcase_05 AC 187 ms
20,288 KB
testcase_06 AC 187 ms
20,728 KB
testcase_07 AC 63 ms
7,936 KB
testcase_08 AC 239 ms
20,316 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 105 ms
10,880 KB
testcase_11 AC 73 ms
8,576 KB
testcase_12 AC 49 ms
7,040 KB
testcase_13 AC 171 ms
13,888 KB
testcase_14 AC 194 ms
15,932 KB
testcase_15 AC 226 ms
17,516 KB
testcase_16 AC 110 ms
11,076 KB
testcase_17 AC 249 ms
18,652 KB
testcase_18 AC 78 ms
8,704 KB
testcase_19 AC 234 ms
17,880 KB
testcase_20 AC 61 ms
7,296 KB
testcase_21 AC 98 ms
10,496 KB
testcase_22 AC 217 ms
16,700 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 45 ms
6,912 KB
testcase_26 AC 126 ms
11,948 KB
testcase_27 AC 127 ms
11,848 KB
testcase_28 AC 223 ms
17,284 KB
testcase_29 AC 27 ms
6,816 KB
testcase_30 AC 233 ms
18,684 KB
testcase_31 AC 158 ms
15,052 KB
testcase_32 AC 104 ms
10,604 KB
testcase_33 AC 231 ms
21,016 KB
testcase_34 AC 84 ms
8,960 KB
testcase_35 AC 235 ms
18,892 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 4 ms
6,820 KB
testcase_38 AC 4 ms
6,820 KB
testcase_39 AC 4 ms
6,820 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 376 ms
20,908 KB
testcase_42 AC 94 ms
8,960 KB
testcase_43 AC 182 ms
12,672 KB
testcase_44 AC 59 ms
6,816 KB
testcase_45 AC 173 ms
12,416 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for (int i = 0; i < (n); i ++)
using namespace std;
typedef long long ll;
typedef pair<double,int> PL;
typedef pair<int,int> P;
const int INF = 1e9;
const ll MOD = 1e12;
const double eps = 1e-6;

vector<double> dijkstra(int n, vector<vector<PL>>& G,int& s) {
    vector<double> dist(n,(double)INF);
    dist[s] = 0.0;

    priority_queue<PL,vector<PL>,greater<P>> q;
    q.push({0.0,s});

    while (!q.empty()) {
        PL p = q.top(); q.pop();
        double d = p.first;
        int v = p.second;
        if (dist[v] < d) continue;
        for (PL p: G[v]) {
            double cost = p.first;
            int e = p.second;
            if (dist[e] > dist[v] + cost) {
                dist[e] = dist[v] + cost;
                q.push({dist[e],e});
            }
        }  
    }
    return dist;
}

int main() {
    int N,M,X,Y; cin >> N >> M >> X >> Y; X--;Y--;
    vector<pair<int,int>> point(N);
    rep(i,N) cin >> point[i].first >> point[i].second;
    vector<vector<PL>> G(N);
    auto dist = [&](int x,int y){return sqrt((point[x].first - point[y].first) * (point[x].first - point[y].first) + (point[x].second - point[y].second) * (point[x].second - point[y].second));};
    rep(_,M){
        int p,q; cin >> p >> q;
        p --; q --;
        double d = dist(p,q);
        G[p].push_back(PL(d,q));
        G[q].push_back(PL(d,p));
    }
    vector<double> distance = dijkstra(N,G,X);
    double ans = distance[Y];
    printf("%0.10f\n",ans);
}
0