結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー kyoprounokyoprouno
提出日時 2020-05-29 21:58:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 449 ms / 2,000 ms
コード長 2,229 bytes
コンパイル時間 2,454 ms
コンパイル使用メモリ 192,744 KB
実行使用メモリ 35,548 KB
最終ジャッジ日時 2024-11-06 04:35:22
合計ジャッジ時間 11,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
8,244 KB
testcase_01 AC 5 ms
8,392 KB
testcase_02 AC 211 ms
22,012 KB
testcase_03 AC 288 ms
34,080 KB
testcase_04 AC 289 ms
33,600 KB
testcase_05 AC 233 ms
33,972 KB
testcase_06 AC 236 ms
34,112 KB
testcase_07 AC 86 ms
14,988 KB
testcase_08 AC 301 ms
34,256 KB
testcase_09 AC 31 ms
10,420 KB
testcase_10 AC 135 ms
19,612 KB
testcase_11 AC 96 ms
15,948 KB
testcase_12 AC 59 ms
15,464 KB
testcase_13 AC 214 ms
25,572 KB
testcase_14 AC 241 ms
28,208 KB
testcase_15 AC 287 ms
30,708 KB
testcase_16 AC 137 ms
20,964 KB
testcase_17 AC 313 ms
32,700 KB
testcase_18 AC 96 ms
17,832 KB
testcase_19 AC 301 ms
31,016 KB
testcase_20 AC 83 ms
14,408 KB
testcase_21 AC 117 ms
20,644 KB
testcase_22 AC 266 ms
28,744 KB
testcase_23 AC 7 ms
8,904 KB
testcase_24 AC 7 ms
8,672 KB
testcase_25 AC 54 ms
15,212 KB
testcase_26 AC 164 ms
21,328 KB
testcase_27 AC 173 ms
22,080 KB
testcase_28 AC 277 ms
31,088 KB
testcase_29 AC 34 ms
12,560 KB
testcase_30 AC 293 ms
31,884 KB
testcase_31 AC 204 ms
25,080 KB
testcase_32 AC 134 ms
19,008 KB
testcase_33 AC 283 ms
33,936 KB
testcase_34 AC 106 ms
17,664 KB
testcase_35 AC 298 ms
32,968 KB
testcase_36 AC 6 ms
8,644 KB
testcase_37 AC 9 ms
8,728 KB
testcase_38 AC 7 ms
8,492 KB
testcase_39 AC 8 ms
8,620 KB
testcase_40 AC 7 ms
8,356 KB
testcase_41 AC 449 ms
35,548 KB
testcase_42 AC 130 ms
16,468 KB
testcase_43 AC 215 ms
22,640 KB
testcase_44 AC 73 ms
13,364 KB
testcase_45 AC 218 ms
22,304 KB
testcase_46 AC 4 ms
8,448 KB
testcase_47 AC 5 ms
8,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("O3")
#include <bits/stdc++.h>
#define ll long long
#define rep(i,n) for(ll i=0;i<(n);i++)
#define pll pair<ll,ll>
#define pq priority_queue
#define pb push_back
#define eb emplace_back
#define fi first
#define se second
#define ios ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0);
#define lb(c,x) distance(c.begin(),lower_bound(all(c),x))
#define ub(c,x) distance(c.begin(),upper_bound(all(c),x))

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;}

const ll mod=1e9+7;

vector<pair<ll,long double>> to[200005];

const ll INF=1e10+100;
const ll white=0; //未探索
const ll gray=1; //探索中
const ll black=2; //探索済み

ll n,x;
vector<long double> d;

void dijkstra(){
    priority_queue<pll> PQ;
    vector<ll> color(n);
    rep(i,n){
        d[i]=INF;
        color[i]=white;
    }
    d[x]=0;
    PQ.push(make_pair((long double)0.0,x));
    color[x]=gray;
    while(!PQ.empty()){
        pll f=PQ.top();
        PQ.pop();
        ll u=f.second;
        color[u]=black;
        if(d[u]<f.first*(-1)) continue; //d[u]は正。
        for(ll j=0;j<to[u].size();j++){
            ll v=to[u][j].first;
            if(color[v]==black) continue;
            if(d[v]>d[u]+to[u][j].second){
                d[v]=d[u]+to[u][j].second;
                PQ.push(make_pair(d[v]*(-1),v));
                color[v]=gray;
            }
        }
    }
    /*rep(i,n){
        if(d[i]==INF){
            cout << "INF" << endl;
        }
        else{
            cout << d[i] << endl;
        }
    }*/
}

int main()
{
    ll m;
    cin >> n >> m;
    ll y;
    cin >> x >> y;
    x--; y--;
    d.resize(n);
    vector<pair<long double,long double>> p(n);
    rep(i,n){
        cin >> p[i].fi >> p[i].se;
    }
    rep(i,m){
        ll s,t;
        cin >> s >> t;
        s--; t--;
        ll dx=p[s].fi-p[t].fi;
        ll dy=p[s].se-p[t].se;
        long double dist=sqrt(dx*dx+dy*dy);
        to[s].push_back(make_pair(t,dist));
        to[t].push_back(make_pair(s,dist));
    }
    dijkstra();
    cout << fixed << setprecision(10);
    cout << d[y] << endl;
    return 0;
} 
0