結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー carrot46carrot46
提出日時 2020-05-29 21:40:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 1,887 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 183,768 KB
実行使用メモリ 34,960 KB
最終ジャッジ日時 2024-11-06 03:03:34
合計ジャッジ時間 9,963 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 183 ms
17,536 KB
testcase_03 AC 255 ms
33,284 KB
testcase_04 AC 252 ms
34,960 KB
testcase_05 AC 203 ms
32,396 KB
testcase_06 AC 204 ms
31,656 KB
testcase_07 AC 65 ms
10,368 KB
testcase_08 AC 247 ms
29,528 KB
testcase_09 AC 22 ms
6,820 KB
testcase_10 AC 108 ms
14,976 KB
testcase_11 AC 73 ms
11,392 KB
testcase_12 AC 54 ms
11,008 KB
testcase_13 AC 192 ms
21,380 KB
testcase_14 AC 222 ms
25,012 KB
testcase_15 AC 260 ms
27,312 KB
testcase_16 AC 125 ms
17,164 KB
testcase_17 AC 279 ms
29,492 KB
testcase_18 AC 89 ms
13,568 KB
testcase_19 AC 264 ms
27,772 KB
testcase_20 AC 67 ms
9,828 KB
testcase_21 AC 108 ms
16,348 KB
testcase_22 AC 242 ms
26,224 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 49 ms
10,496 KB
testcase_26 AC 143 ms
17,912 KB
testcase_27 AC 149 ms
17,868 KB
testcase_28 AC 251 ms
28,664 KB
testcase_29 AC 29 ms
7,936 KB
testcase_30 AC 257 ms
30,980 KB
testcase_31 AC 180 ms
24,444 KB
testcase_32 AC 113 ms
15,640 KB
testcase_33 AC 247 ms
31,396 KB
testcase_34 AC 91 ms
13,304 KB
testcase_35 AC 268 ms
31,412 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 4 ms
6,816 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 407 ms
31,092 KB
testcase_42 AC 104 ms
11,904 KB
testcase_43 AC 194 ms
18,048 KB
testcase_44 AC 61 ms
8,832 KB
testcase_45 AC 197 ms
17,792 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <iomanip>
using namespace std;
#define reps(i,s,n) for(int i = s; i < n; i++)
#define rep(i,n) reps(i,0,n)
#define Rreps(i,n,e) for(int i = n - 1; i >= e; --i)
#define Rrep(i,n) Rreps(i,n,0)
#define ALL(a) a.begin(), a.end()
#define fi first
#define se second
typedef long long ll;
typedef vector<ll> vec;
typedef vector<vec> mat;

ll N,M,H,W,Q,K,A,B;
string S;
const ll MOD = 998244353;
//const ll MOD = (1e+9) + 7;
typedef pair<ll, ll> P;
const ll INF = (1LL<<62);

struct edge{
    int to;
    long double cost;
    edge(){}
    edge(int a, long double v){
        to = a;
        cost = v;
    }
};

#define eps 1e-9

template<class T> bool chmin(T &a, const T &b){
    if(a > b) {a = b; return true;}
    else return false;
}
template<class T> bool chmax(T &a, const T &b){
    if(a < b) {a = b; return true;}
    else return false;
}

int main() {
    cin>>N>>M;
    ll s, g;
    cin>>s>>g;
    --s; --g;
    vec p(N), q(N);
    rep(i,N) cin>>p[i]>>q[i];
    vector<vector<edge> > G(N, vector<edge>(0));
    rep(i,M){
        ll u, v;
        cin>>u>>v;
        --u; --v;
        long double d = sqrt((p[u] - p[v]) * (p[u] - p[v]) + (q[u] - q[v]) * (q[u] - q[v]));
        G[u].emplace_back(v, d);
        G[v].emplace_back(u, d);
    }
    vector<long double> dist(N, 1e+100);
    dist[s] = 0;
    typedef pair<long double, ll> PL;
    priority_queue<PL, vector<PL>, greater<> > pque;
    pque.emplace(0, s);
    while(!pque.empty()){
        PL pl = pque.top();
        pque.pop();
        int v = pl.se;
        long double d = pl.fi;
        if(dist[v] + eps < d) continue;
        for(edge e : G[v]){
            if (e.cost < 0.1 && dist[e.to] < d + eps) continue;
            if(chmin(dist[e.to], d + e.cost)) {
                pque.emplace(dist[e.to], e.to);
            }
        }
    }
    cout<<fixed<<setprecision(10)<<dist[g]<<endl;
}
0