結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー realDivineJKrealDivineJK
提出日時 2020-05-30 01:11:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 909 ms / 2,000 ms
コード長 1,571 bytes
コンパイル時間 2,154 ms
コンパイル使用メモリ 187,056 KB
実行使用メモリ 32,580 KB
最終ジャッジ日時 2024-11-06 13:17:13
合計ジャッジ時間 17,939 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 377 ms
17,548 KB
testcase_03 AC 477 ms
25,100 KB
testcase_04 AC 476 ms
26,248 KB
testcase_05 AC 371 ms
26,248 KB
testcase_06 AC 371 ms
26,248 KB
testcase_07 AC 112 ms
10,920 KB
testcase_08 AC 502 ms
32,580 KB
testcase_09 AC 34 ms
6,816 KB
testcase_10 AC 199 ms
16,380 KB
testcase_11 AC 135 ms
12,036 KB
testcase_12 AC 57 ms
6,820 KB
testcase_13 AC 346 ms
15,040 KB
testcase_14 AC 420 ms
22,424 KB
testcase_15 AC 529 ms
23,872 KB
testcase_16 AC 207 ms
10,352 KB
testcase_17 AC 551 ms
24,992 KB
testcase_18 AC 133 ms
7,908 KB
testcase_19 AC 523 ms
24,680 KB
testcase_20 AC 118 ms
9,140 KB
testcase_21 AC 169 ms
8,092 KB
testcase_22 AC 471 ms
22,440 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 51 ms
6,816 KB
testcase_26 AC 254 ms
14,172 KB
testcase_27 AC 251 ms
12,480 KB
testcase_28 AC 472 ms
20,264 KB
testcase_29 AC 39 ms
6,816 KB
testcase_30 AC 532 ms
23,880 KB
testcase_31 AC 346 ms
20,312 KB
testcase_32 AC 208 ms
13,248 KB
testcase_33 AC 531 ms
23,940 KB
testcase_34 AC 144 ms
8,704 KB
testcase_35 AC 516 ms
23,964 KB
testcase_36 AC 4 ms
6,816 KB
testcase_37 AC 6 ms
6,816 KB
testcase_38 AC 4 ms
6,816 KB
testcase_39 AC 6 ms
6,816 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 909 ms
32,096 KB
testcase_42 AC 213 ms
12,092 KB
testcase_43 AC 430 ms
18,528 KB
testcase_44 AC 125 ms
9,168 KB
testcase_45 AC 422 ms
18,212 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
double calc_dist(int x1, int y1, int x2, int y2){
    long long tmpx = (x1 - x2) * (x1 - x2);
    long long tmpy = (y1 - y2) * (y1 - y2);
    return sqrt(tmpx + tmpy);
}
int main(void){
    // Your code here!
    int N, M;
    cin >> N >> M;
    int X, Y;
    cin >> X >> Y;
    X--;
    Y--;
    map<int, vector<int>> D;
    vector<pair<int, int>> p(N);
    int x, y;
    for (int i=0;i<N;i++){
        cin >> x >> y;
        p[i] = make_pair(x, y);
    }
    for (int i=0;i<M;i++){
        cin >> x >> y;
        x--;
        y--;
        if (D.count(x)){
            D[x].push_back(y);
        }
        else{
            D[x] = {y};
        }
        if (D.count(y)){
            D[y].push_back(x);
        }
        else{
            D[y] = {x};
        }
    }
    priority_queue<pair<double, int>, vector<pair<double, int>>, greater<pair<double, int>>> pq;
    vector<double> dist(N, 1e9);
    dist[X] = 0.0;
    for (int i=0;i<N;i++){
        pq.push(make_pair(dist[i], i));
    }
    pair<double, int> tmp;
    int r;
    while (!pq.empty()){
        tmp = pq.top();
        pq.pop();
        r = tmp.second;
        if (D.count(r)){
            for (int i: D[r]){
                if (dist[i] > dist[r] + calc_dist(p[i].first, p[i].second, p[r].first, p[r].second)){
                    dist[i] = dist[r] + calc_dist(p[i].first, p[i].second, p[r].first, p[r].second);
                    pq.push(make_pair(dist[i], i));
                }
            }
        }
    }
    printf("%.015f\n", dist[Y]);
    return 0;
}
0