結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー outlineoutline
提出日時 2020-12-14 07:45:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 1,980 bytes
コンパイル時間 1,352 ms
コンパイル使用メモリ 146,308 KB
実行使用メモリ 22,760 KB
最終ジャッジ日時 2024-09-20 00:29:55
合計ジャッジ時間 6,575 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 98 ms
13,416 KB
testcase_03 AC 139 ms
21,992 KB
testcase_04 AC 149 ms
21,736 KB
testcase_05 AC 108 ms
21,736 KB
testcase_06 AC 104 ms
21,732 KB
testcase_07 AC 36 ms
8,296 KB
testcase_08 AC 138 ms
21,920 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 62 ms
11,748 KB
testcase_11 AC 41 ms
9,192 KB
testcase_12 AC 21 ms
7,296 KB
testcase_13 AC 94 ms
15,464 KB
testcase_14 AC 109 ms
18,664 KB
testcase_15 AC 126 ms
19,564 KB
testcase_16 AC 60 ms
11,628 KB
testcase_17 AC 144 ms
20,844 KB
testcase_18 AC 44 ms
9,576 KB
testcase_19 AC 133 ms
19,940 KB
testcase_20 AC 36 ms
8,040 KB
testcase_21 AC 49 ms
10,752 KB
testcase_22 AC 124 ms
19,528 KB
testcase_23 AC 3 ms
5,376 KB
testcase_24 AC 3 ms
5,376 KB
testcase_25 AC 19 ms
7,040 KB
testcase_26 AC 70 ms
12,520 KB
testcase_27 AC 68 ms
12,776 KB
testcase_28 AC 116 ms
19,432 KB
testcase_29 AC 14 ms
6,016 KB
testcase_30 AC 126 ms
20,460 KB
testcase_31 AC 86 ms
16,236 KB
testcase_32 AC 57 ms
11,624 KB
testcase_33 AC 128 ms
20,516 KB
testcase_34 AC 46 ms
9,452 KB
testcase_35 AC 131 ms
20,708 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 4 ms
5,376 KB
testcase_38 AC 3 ms
5,376 KB
testcase_39 AC 3 ms
5,376 KB
testcase_40 AC 2 ms
5,376 KB
testcase_41 AC 211 ms
22,760 KB
testcase_42 AC 55 ms
9,316 KB
testcase_43 AC 107 ms
13,800 KB
testcase_44 AC 37 ms
7,400 KB
testcase_45 AC 98 ms
13,540 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <queue>
#include <string>
#include <map>
#include <set>
#include <stack>
#include <tuple>
#include <deque>
#include <array>
#include <numeric>
#include <bitset>
#include <iomanip>
#include <cassert>
#include <chrono>
#include <random>
#include <limits>
#include <iterator>
#include <functional>
#include <sstream>
#include <fstream>
#include <complex>
#include <cstring>
#include <unordered_map>
using namespace std;

using ll = long long;
using P = pair<int, int>;
constexpr int INF = 1001001001;
constexpr int mod = 1000000007;
// constexpr int mod = 998244353;

template<class T>
inline bool chmax(T& x, T y){
    if(x < y){
        x = y;
        return true;
    }
    return false;
}
template<class T>
inline bool chmin(T& x, T y){
    if(x > y){
        x = y;
        return true;
    }
    return false;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);

    int N, M, S, T;
    cin >> N >> M >> S >> T;
    --S, --T;
    vector<complex<double>> ps;
    for(int i = 0; i < N; ++i){
        double x, y;
        cin >> x >> y;
        ps.emplace_back(x, y);
    }
    vector<vector<pair<int, double>>> graph(N);
    for(int i = 0; i < M; ++i){
        int u, v;
        cin >> u >> v;
        --u, --v;
        double d = abs(ps[u] - ps[v]);
        graph[u].emplace_back(v, d);
        graph[v].emplace_back(u, d);
    }

    vector<double> dist(N, 1e+30);
    using Data = pair<double, int>;
    priority_queue<Data, vector<Data>, greater<Data>> que;
    dist[S] = 0.0;
    que.emplace(0, S);
    while(!que.empty()){
        auto [d, from] = que.top();
        que.pop();
        if(dist[from] > d)  continue;
        for(auto [to, cost] : graph[from]){
            if(chmin(dist[to], dist[from] + cost)){
                que.emplace(dist[to], to);
            }
        }
    }

    cout << fixed << setprecision(15);
    cout << dist[T] << endl;

    return 0;
}
0