結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー trineutrontrineutron
提出日時 2020-05-29 22:08:41
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 370 ms / 2,000 ms
コード長 1,127 bytes
コンパイル時間 2,637 ms
コンパイル使用メモリ 214,352 KB
実行使用メモリ 21,824 KB
最終ジャッジ日時 2024-11-06 05:01:49
合計ジャッジ時間 10,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 146 ms
12,288 KB
testcase_03 AC 218 ms
20,672 KB
testcase_04 AC 231 ms
21,060 KB
testcase_05 AC 195 ms
21,508 KB
testcase_06 AC 190 ms
21,824 KB
testcase_07 AC 63 ms
7,808 KB
testcase_08 AC 239 ms
20,380 KB
testcase_09 AC 22 ms
6,816 KB
testcase_10 AC 107 ms
11,008 KB
testcase_11 AC 73 ms
8,448 KB
testcase_12 AC 49 ms
7,040 KB
testcase_13 AC 161 ms
13,896 KB
testcase_14 AC 179 ms
15,936 KB
testcase_15 AC 213 ms
17,520 KB
testcase_16 AC 107 ms
11,072 KB
testcase_17 AC 243 ms
18,656 KB
testcase_18 AC 79 ms
9,012 KB
testcase_19 AC 210 ms
18,008 KB
testcase_20 AC 60 ms
7,424 KB
testcase_21 AC 97 ms
10,444 KB
testcase_22 AC 203 ms
16,708 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 112 ms
11,428 KB
testcase_27 AC 119 ms
11,884 KB
testcase_28 AC 199 ms
17,288 KB
testcase_29 AC 27 ms
6,820 KB
testcase_30 AC 200 ms
18,564 KB
testcase_31 AC 152 ms
15,180 KB
testcase_32 AC 87 ms
10,096 KB
testcase_33 AC 210 ms
20,504 KB
testcase_34 AC 82 ms
8,992 KB
testcase_35 AC 207 ms
18,888 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 4 ms
6,820 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 4 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 370 ms
20,852 KB
testcase_42 AC 93 ms
8,960 KB
testcase_43 AC 167 ms
12,672 KB
testcase_44 AC 51 ms
6,820 KB
testcase_45 AC 171 ms
12,672 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;

int main() {
    int n, m, x, y;
    cin >> n >> m >> x >> y;
    x--; y--;
    vector<int> a(n), b(n);
    for (int i = 0; i < n; i++) {
        cin >> a.at(i) >> b.at(i);
    }
    vector<vector<pair<int, double>>> to(n);
    for (int i = 0; i < m; i++) {
        int p, q;
        cin >> p >> q;
        p--; q--;
        int dx = a.at(p) - a.at(q), dy = b.at(p) - b.at(q);
        to.at(p).emplace_back(q, sqrt(dx * dx + dy * dy));
        to.at(q).emplace_back(p, sqrt(dx * dx + dy * dy));
    }
    vector<double> d(n, 1e9);
    d.at(x) = 0;
    priority_queue<pair<double, int>> que;
    que.emplace(0, x);
    while (!que.empty()) {
        auto t = que.top();
        double d0 = -t.first;
        int v = t.second;
        que.pop();
        if (v == y) break;
        if (d.at(v) < d0) continue;
        for (auto next : to.at(v)) {
            if (d.at(next.first) <= d0 + next.second) continue;
            d.at(next.first) = d0 + next.second;
            que.emplace(-d.at(next.first), next.first);
        }
    }
    cout << setprecision(17) << d.at(y) << endl;
}
0