結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー siro53siro53
提出日時 2020-05-29 21:48:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 2,122 bytes
コンパイル時間 2,361 ms
コンパイル使用メモリ 214,040 KB
実行使用メモリ 37,828 KB
最終ジャッジ日時 2024-11-06 03:34:46
合計ジャッジ時間 9,509 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 163 ms
19,072 KB
testcase_03 AC 193 ms
36,576 KB
testcase_04 AC 194 ms
37,532 KB
testcase_05 AC 141 ms
35,880 KB
testcase_06 AC 143 ms
37,828 KB
testcase_07 AC 47 ms
11,264 KB
testcase_08 AC 169 ms
32,692 KB
testcase_09 AC 16 ms
6,816 KB
testcase_10 AC 77 ms
16,512 KB
testcase_11 AC 53 ms
12,544 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 170 ms
22,508 KB
testcase_14 AC 204 ms
28,100 KB
testcase_15 AC 232 ms
29,540 KB
testcase_16 AC 105 ms
17,804 KB
testcase_17 AC 249 ms
31,556 KB
testcase_18 AC 69 ms
14,036 KB
testcase_19 AC 238 ms
29,656 KB
testcase_20 AC 56 ms
10,524 KB
testcase_21 AC 79 ms
16,980 KB
testcase_22 AC 219 ms
28,168 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 3 ms
6,816 KB
testcase_25 AC 28 ms
10,624 KB
testcase_26 AC 123 ms
19,096 KB
testcase_27 AC 127 ms
18,848 KB
testcase_28 AC 225 ms
29,932 KB
testcase_29 AC 19 ms
8,192 KB
testcase_30 AC 241 ms
33,228 KB
testcase_31 AC 160 ms
26,504 KB
testcase_32 AC 100 ms
16,720 KB
testcase_33 AC 233 ms
33,076 KB
testcase_34 AC 74 ms
14,036 KB
testcase_35 AC 244 ms
32,724 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,816 KB
testcase_40 AC 3 ms
6,820 KB
testcase_41 AC 353 ms
33,984 KB
testcase_42 AC 86 ms
13,056 KB
testcase_43 AC 167 ms
19,736 KB
testcase_44 AC 50 ms
9,472 KB
testcase_45 AC 171 ms
19,456 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
template <class T> inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T> inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return 1;
    }
    return 0;
}
void print() { cout << "\n"; }
template <class T> void print(const T &x) { cout << x << "\n"; }
template <class T, class... Args> void print(const T &x, const Args &... args) {
    cout << x << " ";
    print(args...);
}
template <class T> void printVector(const vector<T> &v) {
    for(const T &x : v) {
        cout << x << " ";
    }
    cout << "\n";
}
using ll = long long;

#define ALL(v) (v).begin(), (v).end()
#define RALL(v) (v).rbegin(), (v).rend()
const double EPS = 1e-7;
const int INF = 1 << 30;
const ll LLINF = 1LL << 60;
const double PI = acos(-1);
constexpr int MOD = 1000000007;
const int dx[4] = {1, 0, -1, 0};
const int dy[4] = {0, 1, 0, -1};

//-------------------------------------

using ld = long double;
using P = complex<ld>;
using Data = pair<ld, int>;

struct edge {
    int to;
    ld cost;
};

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    cout << fixed << setprecision(15);
    int n, m, X, Y;
    cin >> n >> m >> X >> Y;
    X--;
    Y--;
    vector<P> p(n);
    for(int i = 0; i < n; i++) {
        ld x, y;
        cin >> x >> y;
        p[i] = P(x, y);
    }
    vector<vector<edge>> g(n);
    for(int i = 0; i < m; i++) {
        int a, b;
        cin >> a >> b;
        a--;
        b--;
        g[a].emplace_back(edge{b, abs(p[a] - p[b])});
        g[b].emplace_back(edge{a, abs(p[a] - p[b])});
    }
    priority_queue<Data, vector<Data>, greater<Data>> que;
    vector<ld> d(n, LLINF);
    d[X] = 0;
    que.push(Data(0, X));
    while(que.size()) {
        auto [nd, nv] = que.top();
        que.pop();
        if(nd > d[nv]) {
            continue;
        }
        for(const auto &e : g[nv]) {
            if(d[e.to] > nd + e.cost) {
                d[e.to] = nd + e.cost;
                que.push(Data(d[e.to], e.to));
            }
        }
    }
    print(d[Y]);
}
0