結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー granddaifukugranddaifuku
提出日時 2020-06-02 14:15:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 260 ms / 2,000 ms
コード長 1,706 bytes
コンパイル時間 1,921 ms
コンパイル使用メモリ 181,276 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-11-23 21:14:33
合計ジャッジ時間 9,163 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 113 ms
13,056 KB
testcase_03 AC 148 ms
19,560 KB
testcase_04 AC 145 ms
19,688 KB
testcase_05 AC 109 ms
19,688 KB
testcase_06 AC 109 ms
19,560 KB
testcase_07 AC 39 ms
8,192 KB
testcase_08 AC 143 ms
21,888 KB
testcase_09 AC 14 ms
5,248 KB
testcase_10 AC 64 ms
11,648 KB
testcase_11 AC 44 ms
9,088 KB
testcase_12 AC 21 ms
7,168 KB
testcase_13 AC 110 ms
14,064 KB
testcase_14 AC 128 ms
16,088 KB
testcase_15 AC 152 ms
17,812 KB
testcase_16 AC 67 ms
10,880 KB
testcase_17 AC 169 ms
19,108 KB
testcase_18 AC 46 ms
8,832 KB
testcase_19 AC 162 ms
18,360 KB
testcase_20 AC 39 ms
7,552 KB
testcase_21 AC 52 ms
10,240 KB
testcase_22 AC 141 ms
16,656 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 4 ms
5,248 KB
testcase_25 AC 20 ms
7,040 KB
testcase_26 AC 86 ms
11,580 KB
testcase_27 AC 82 ms
11,752 KB
testcase_28 AC 142 ms
17,464 KB
testcase_29 AC 14 ms
5,760 KB
testcase_30 AC 161 ms
18,244 KB
testcase_31 AC 113 ms
14,268 KB
testcase_32 AC 69 ms
10,448 KB
testcase_33 AC 155 ms
19,060 KB
testcase_34 AC 51 ms
8,960 KB
testcase_35 AC 164 ms
18,552 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 3 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 260 ms
22,400 KB
testcase_42 AC 64 ms
9,216 KB
testcase_43 AC 122 ms
13,440 KB
testcase_44 AC 39 ms
7,040 KB
testcase_45 AC 115 ms
13,184 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define rep(i, n) for(int i = 0; i < (int)n; ++i)
#define FOR(i, a, b) for(int i = a; i < (int)b; ++i)
#define rrep(i, n) for(int i = ((int)n - 1); i >= 0; --i)

using ll = long long;
using ld = long double;

const ll INF = 1e18;
const double Inf = 1e9;
const double EPS = 1e-9;
const int MOD = 1e9 + 7;

int n;
using P = pair<int, int>;

struct edge {
    int to;
    double cost;
};

vector<double> dist;
vector<vector<edge> > g;

void dijkstra(int s) {
    dist = vector<double>(n, Inf);
    dist[s] = 0;
    priority_queue<P, vector<P>, greater<P> > pq;
    pq.push(P(0, s));

    while (!pq.empty()) {
        P p = pq.top();
        pq.pop();
        int v = p.second;
        if (dist[v] < p.first) continue;

        rep (i, g[v].size()) {
            edge e = g[v][i];
            if (dist[e.to] > dist[v] + e.cost) {
                dist[e.to] = dist[v] + e.cost;
                pq.push(P(dist[e.to], e.to));
            }
        }
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(0);
    cout << fixed << setprecision(10);
    int m, X, Y;
    cin >> n >> m >> X >> Y;
    g.resize(n);
    vector<pair<double, double> > pole(n);
    rep (i, n) cin >> pole[i].first >> pole[i].second;
    rep (i, m) {
        int p, q;
        cin >> p >> q;
        p--, q--;
        double dx, dy;
        dx = pole[p].first - pole[q].first;
        dy = pole[p].second - pole[q].second;
        double c = sqrt(dx * dx + dy * dy);
        edge e;
        e.cost = c;
        e.to = q;
        g[p].push_back(e);
        e.to = p;
        g[q].push_back(e);
    }
    dijkstra(X - 1);
    cout << dist[Y - 1] << endl;
    
    return 0;
}

0