結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー milanis48663220milanis48663220
提出日時 2020-05-29 21:39:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 1,484 bytes
コンパイル時間 1,093 ms
コンパイル使用メモリ 102,868 KB
実行使用メモリ 25,248 KB
最終ジャッジ日時 2024-11-06 02:55:09
合計ジャッジ時間 6,995 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,792 KB
testcase_01 AC 5 ms
10,048 KB
testcase_02 AC 124 ms
17,040 KB
testcase_03 AC 146 ms
24,292 KB
testcase_04 AC 144 ms
24,556 KB
testcase_05 AC 113 ms
23,848 KB
testcase_06 AC 115 ms
25,248 KB
testcase_07 AC 40 ms
13,380 KB
testcase_08 AC 140 ms
22,344 KB
testcase_09 AC 16 ms
12,772 KB
testcase_10 AC 64 ms
16,608 KB
testcase_11 AC 46 ms
13,640 KB
testcase_12 AC 26 ms
13,640 KB
testcase_13 AC 116 ms
19,744 KB
testcase_14 AC 138 ms
20,052 KB
testcase_15 AC 166 ms
21,296 KB
testcase_16 AC 73 ms
16,972 KB
testcase_17 AC 182 ms
22,188 KB
testcase_18 AC 50 ms
14,788 KB
testcase_19 AC 173 ms
21,316 KB
testcase_20 AC 44 ms
14,688 KB
testcase_21 AC 57 ms
18,144 KB
testcase_22 AC 152 ms
20,992 KB
testcase_23 AC 5 ms
10,440 KB
testcase_24 AC 5 ms
12,000 KB
testcase_25 AC 23 ms
15,200 KB
testcase_26 AC 86 ms
16,820 KB
testcase_27 AC 87 ms
17,064 KB
testcase_28 AC 157 ms
21,512 KB
testcase_29 AC 17 ms
14,044 KB
testcase_30 AC 174 ms
23,180 KB
testcase_31 AC 120 ms
19,100 KB
testcase_32 AC 73 ms
15,632 KB
testcase_33 AC 169 ms
23,188 KB
testcase_34 AC 54 ms
14,660 KB
testcase_35 AC 168 ms
23,200 KB
testcase_36 AC 5 ms
12,000 KB
testcase_37 AC 5 ms
10,176 KB
testcase_38 AC 5 ms
10,440 KB
testcase_39 AC 6 ms
10,432 KB
testcase_40 AC 5 ms
11,876 KB
testcase_41 AC 275 ms
22,980 KB
testcase_42 AC 69 ms
14,408 KB
testcase_43 AC 131 ms
16,836 KB
testcase_44 AC 42 ms
12,612 KB
testcase_45 AC 127 ms
16,836 KB
testcase_46 AC 4 ms
10,052 KB
testcase_47 AC 4 ms
9,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <cmath>

using namespace std;
typedef long long ll;

const double INF = 1e+15;

typedef pair<double, int> P;

struct edge{
    int to;
    double cost;
};

double d[200000];

void dijkstra(int s, int num_v, vector<edge> G[]){
    priority_queue<P, vector<P>, greater<P>> que;
    fill(d, d+num_v, INF);
    d[s] = 0;
    que.push(P(0, s));
    while(!que.empty()){
        P p = que.top();que.pop();
        int v = p.second;
        if(d[v] < p.first) continue;
        for(int i = 0; i < G[v].size(); i++){
            edge e = G[v][i];
            if(d[v] + e.cost < d[e.to]){
                d[e.to] = d[v] + e.cost;
                que.push(P(d[e.to], e.to));
            }
        }
    }
}

double dist(double xa, double xb, double ya, double yb){
    return sqrt((xa-xb)*(xa-xb)+(ya-yb)*(ya-yb));
}

vector<edge> G[200000];
int N, M, X, Y;
double p[200000], q[200000];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> M >> X >> Y;
    X--; Y--;
    for(int i = 0; i < N; i++) cin >> p[i] >> q[i];
    for(int i = 0; i < M; i++){
        int P, Q;
        cin >> P >> Q;
        P--; Q--;
        G[P].push_back((edge){Q, dist(p[P], p[Q], q[P], q[Q])});
        G[Q].push_back((edge){P, dist(p[P], p[Q], q[P], q[Q])});
    }
    dijkstra(X, N, G);
    cout << d[Y] << endl;
}
0