結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー hir355hir355
提出日時 2020-05-29 21:47:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 365 ms / 2,000 ms
コード長 2,484 bytes
コンパイル時間 2,548 ms
コンパイル使用メモリ 213,784 KB
実行使用メモリ 21,664 KB
最終ジャッジ日時 2024-11-06 03:34:23
合計ジャッジ時間 10,467 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 169 ms
12,288 KB
testcase_03 AC 230 ms
21,316 KB
testcase_04 AC 230 ms
21,176 KB
testcase_05 AC 186 ms
21,316 KB
testcase_06 AC 185 ms
21,664 KB
testcase_07 AC 63 ms
7,936 KB
testcase_08 AC 242 ms
20,304 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 104 ms
11,008 KB
testcase_11 AC 73 ms
8,576 KB
testcase_12 AC 50 ms
7,168 KB
testcase_13 AC 168 ms
13,888 KB
testcase_14 AC 192 ms
15,936 KB
testcase_15 AC 222 ms
17,512 KB
testcase_16 AC 110 ms
11,076 KB
testcase_17 AC 241 ms
18,652 KB
testcase_18 AC 76 ms
8,832 KB
testcase_19 AC 225 ms
17,884 KB
testcase_20 AC 59 ms
7,424 KB
testcase_21 AC 96 ms
10,496 KB
testcase_22 AC 208 ms
16,708 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 45 ms
6,912 KB
testcase_26 AC 123 ms
11,816 KB
testcase_27 AC 132 ms
11,760 KB
testcase_28 AC 218 ms
17,284 KB
testcase_29 AC 27 ms
6,816 KB
testcase_30 AC 225 ms
18,560 KB
testcase_31 AC 156 ms
15,056 KB
testcase_32 AC 99 ms
10,596 KB
testcase_33 AC 228 ms
19,608 KB
testcase_34 AC 81 ms
8,960 KB
testcase_35 AC 228 ms
18,892 KB
testcase_36 AC 3 ms
6,820 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 2 ms
6,816 KB
testcase_41 AC 365 ms
20,848 KB
testcase_42 AC 94 ms
8,832 KB
testcase_43 AC 178 ms
12,672 KB
testcase_44 AC 58 ms
6,912 KB
testcase_45 AC 172 ms
12,544 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;
#define INF_LL 100000000000000000LL
#define INF 200000000
#define MOD 1000000007
#define ll long long
#define all(x) x.begin(), x.end()
#define REP(i, a, b) for(int i = a; i < b; i++)
#define rep(i, n) REP(i, 0, n)
// typedef float double;
// typedef priority_queue prique;
typedef pair<double, int> P;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<P> vp;
typedef vector<ll> vl;
typedef vector<vi> matrix;
int dx[4] = {0, 1, 0, -1};
int dy[4] = {1, 0, -1, 0};
int sign[2] = {1, -1};
template <class T> bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return 1;
    }
    return 0;
}
template <class T> bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return 1;
    }
    return 0;
}

ll modpow(ll a, ll b, ll m) {
    if(b == 0)
        return 1;
    ll t = modpow(a, b / 2, m);
    if(b & 1) {
        return (t * t % m) * a % m;
    } else {
        return t * t % m;
    }
}

// struct edge {
//     int to;
//     ll cost;
//     edge(int t, ll c) { to = t, cost = c; }
// };

struct edge {
    int to;
    double cost;
    edge(int t, double c) { to = t, cost = c; }
};

vector<double> dijkstra(vector<vector<edge>> &g, int start, int n) {
    priority_queue<P, vector<P>, greater<P>> que;
    vector<double> dist(n, INF_LL);
    dist[start] = 0;
    que.push(P(0, start));
    while(!que.empty()) {
        P p = que.top();
        que.pop();
        int v = p.second;
        if(dist[v] < p.first)
            continue;
        rep(i, (int)g[v].size()) {
            edge e = g[v][i];
            if(dist[e.to] > dist[v] + e.cost) {
                dist[e.to] = dist[v] + e.cost;
                que.push(P(dist[e.to], e.to));
            }
        }
    }
    return dist;
}

signed main() {
    int n, m, x, y;
    cin >> n >> m >> x >> y;
    x--;
    y--;
    vector<pair<int, int>> a(n);
    rep(i, n) cin >> a[i].first >> a[i].second;
    vector<vector<edge>> g(n);
    rep(i, m) {
        int p, q;
        cin >> p >> q;
        double t = sqrt((a[p - 1].first - a[q - 1].first) *
                            (a[p - 1].first - a[q - 1].first) +
                        (a[p - 1].second - a[q - 1].second) *
                            (a[p - 1].second - a[q - 1].second));
        g[p - 1].push_back({q - 1, t});
        g[q - 1].push_back({p - 1, t});
    }
    vector<double> dist = dijkstra(g, x, n);
    cout << fixed << setprecision(15) << dist[y] << endl;
    return 0;
}
0