結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー udonmanudonman
提出日時 2020-09-17 10:49:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 2,663 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 133,888 KB
実行使用メモリ 21,152 KB
最終ジャッジ日時 2024-06-22 06:27:14
合計ジャッジ時間 6,500 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 90 ms
12,480 KB
testcase_03 AC 118 ms
21,152 KB
testcase_04 AC 117 ms
20,260 KB
testcase_05 AC 89 ms
20,652 KB
testcase_06 AC 88 ms
20,072 KB
testcase_07 AC 28 ms
8,064 KB
testcase_08 AC 103 ms
20,336 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 46 ms
11,008 KB
testcase_11 AC 33 ms
8,832 KB
testcase_12 AC 22 ms
7,296 KB
testcase_13 AC 100 ms
13,792 KB
testcase_14 AC 113 ms
15,836 KB
testcase_15 AC 132 ms
17,544 KB
testcase_16 AC 58 ms
11,096 KB
testcase_17 AC 141 ms
18,548 KB
testcase_18 AC 40 ms
8,896 KB
testcase_19 AC 128 ms
17,908 KB
testcase_20 AC 30 ms
7,336 KB
testcase_21 AC 50 ms
10,240 KB
testcase_22 AC 123 ms
16,604 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 19 ms
7,168 KB
testcase_26 AC 66 ms
11,712 KB
testcase_27 AC 70 ms
11,780 KB
testcase_28 AC 126 ms
17,312 KB
testcase_29 AC 14 ms
6,944 KB
testcase_30 AC 133 ms
18,584 KB
testcase_31 AC 94 ms
14,952 KB
testcase_32 AC 58 ms
10,500 KB
testcase_33 AC 140 ms
19,888 KB
testcase_34 AC 44 ms
8,956 KB
testcase_35 AC 141 ms
18,788 KB
testcase_36 AC 3 ms
6,940 KB
testcase_37 AC 3 ms
6,940 KB
testcase_38 AC 3 ms
6,944 KB
testcase_39 AC 3 ms
6,940 KB
testcase_40 AC 2 ms
6,940 KB
testcase_41 AC 230 ms
20,884 KB
testcase_42 AC 48 ms
8,960 KB
testcase_43 AC 98 ms
12,672 KB
testcase_44 AC 30 ms
6,948 KB
testcase_45 AC 101 ms
12,416 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <tuple>
#include <cstdint>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <stack>
#include <deque>
#include <unordered_map>
#include <unordered_set>
#include <bitset>
#include <cctype>
#include <numeric>
#include <cmath>
#include <iomanip> //cout << fixed << setprecision(15) << << endl;
#include <cassert>
#include <limits>
//#include "atcoder/all"

using namespace std;
//using namespace atcoder;

#define ll long long int
#define pb push_back
#define rep(i,n) for(int i=0;i<(n);i++)
#define REP(i,n) for(int i=1;i<=(n);i++)
//#define P pair<int,int>

int mx8[] = {0,0,1,-1,-1,1,-1,1};
int my8[] = {-1,1,0,0,-1,-1,1,1};
int mx4[] = {1,-1,0,0};
int my4[] = {0,0,-1,1};


template<typename T>
class Graph
{
public:
    struct Edge
    {
        int to;
        T cost;
    };
    struct edge
    {
        int from;
        int to;
    };
    vector<vector<Edge>> g;
    vector<edge> edges;
    int n;
    Graph(int n)
            :n(n)
    {
        g.resize(n);
    }
    void Add(int from, int to, T cost)
    {
        g[from].push_back({to, cost});
        g[to].push_back({from, cost});
    }
    void Add_Edge(int from, int to)
    {
        edges.push_back({from, to});
    }
};

template<typename T>
vector<T> dijkstra(const Graph<T> &g, int start)
{
    using P = pair<T, int>;
    vector<T> dist(g.n, numeric_limits<T>::max());
    priority_queue<P, vector<P>, greater<P>> pq;
    dist[start] = 0;
    pq.push({dist[start], start});
    while (!pq.empty())
    {
        T expected = pq.top().first;
        int i = pq.top().second;
        pq.pop();
        if (dist[i] != expected)
        {
            continue;
        }
        for (auto e : g.g[i])
        {
            int j = e.to;
            T c = e.cost;
            if (dist[j] > dist[i] + c)
            {
                dist[j] = dist[i] + c;
                pq.push({dist[j], j});
            }
        }
    }
    return dist;
}

int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n, m;
    cin >> n >> m;
    int x, y;
    cin >> x >> y;
    --x;
    --y;
    vector<int> p(n), q(n);
    for (int i = 0; i < n; ++i)
    {
        cin >> p[i] >> q[i];
    }
    Graph<double> g(n);
    for (int i = 0; i < m; ++i)
    {
        int u, v;
        cin >> u >> v;
        --u;
        --v;
        double dist = sqrt((p[u] - p[v]) * (p[u] - p[v]) + (q[u] - q[v]) * (q[u] - q[v]));
        g.Add(u, v, dist);
    }
    vector<double> dist = dijkstra(g, x);
    cout << fixed << setprecision(17) << dist[y] << '\n';
    return 0;
}
0