結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー soto800soto800
提出日時 2020-05-29 22:03:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 2,285 bytes
コンパイル時間 2,268 ms
コンパイル使用メモリ 174,844 KB
実行使用メモリ 26,512 KB
最終ジャッジ日時 2024-11-06 04:43:57
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
12,352 KB
testcase_01 AC 5 ms
11,976 KB
testcase_02 AC 166 ms
19,316 KB
testcase_03 AC 227 ms
26,132 KB
testcase_04 AC 227 ms
26,100 KB
testcase_05 AC 181 ms
26,512 KB
testcase_06 AC 180 ms
26,404 KB
testcase_07 AC 65 ms
15,552 KB
testcase_08 AC 239 ms
24,436 KB
testcase_09 AC 25 ms
13,380 KB
testcase_10 AC 106 ms
17,476 KB
testcase_11 AC 75 ms
16,792 KB
testcase_12 AC 54 ms
15,808 KB
testcase_13 AC 177 ms
20,840 KB
testcase_14 AC 196 ms
22,276 KB
testcase_15 AC 224 ms
23,388 KB
testcase_16 AC 116 ms
18,932 KB
testcase_17 AC 247 ms
24,380 KB
testcase_18 AC 85 ms
16,964 KB
testcase_19 AC 242 ms
23,508 KB
testcase_20 AC 64 ms
15,624 KB
testcase_21 AC 102 ms
18,620 KB
testcase_22 AC 212 ms
22,820 KB
testcase_23 AC 7 ms
12,228 KB
testcase_24 AC 7 ms
12,228 KB
testcase_25 AC 48 ms
15,556 KB
testcase_26 AC 125 ms
18,988 KB
testcase_27 AC 128 ms
19,240 KB
testcase_28 AC 221 ms
23,832 KB
testcase_29 AC 31 ms
15,232 KB
testcase_30 AC 233 ms
24,456 KB
testcase_31 AC 163 ms
21,476 KB
testcase_32 AC 104 ms
19,052 KB
testcase_33 AC 233 ms
25,876 KB
testcase_34 AC 88 ms
16,960 KB
testcase_35 AC 238 ms
24,724 KB
testcase_36 AC 8 ms
13,496 KB
testcase_37 AC 8 ms
13,116 KB
testcase_38 AC 6 ms
12,360 KB
testcase_39 AC 7 ms
12,616 KB
testcase_40 AC 6 ms
13,192 KB
testcase_41 AC 378 ms
24,896 KB
testcase_42 AC 97 ms
16,524 KB
testcase_43 AC 176 ms
18,888 KB
testcase_44 AC 62 ms
14,400 KB
testcase_45 AC 170 ms
18,756 KB
testcase_46 AC 4 ms
11,968 KB
testcase_47 AC 4 ms
11,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define lli long long int
#define REP(i,s,n) for(int i=s;i<n;i++)
#define NUM 2520
#define INF (1LL<<50)
#define DEBUG 0
#define mp(a,b) make_pair(a,b)
#define SORT(V) sort(V.begin(),V.end())
#define PI (3.141592653589794)
#define TO_STRING(VariableName) # VariableName
#define LOG(x) if(DEBUG)cout<<TO_STRING(x)<<"="<<x<<" "<<endl;
#define LOG2(x,y) if(DEBUG)cout<<TO_STRING(x)<<"="<<x<<" "<<TO_STRING(y)<<"="<<y<<endl;
#define LOG3(x,y,z) if(DEBUG)cout<<TO_STRING(x)<<"="<<x<<" "<<TO_STRING(y)<<"="<<y<<" "<<TO_STRING(z)<<"="<<z<<endl;
#define LOG4(w,x,y,z) if(DEBUG)cout<<TO_STRING(w)<<"="<<w<<" "<<TO_STRING(x)<<"="<<x<<" "<<TO_STRING(y)<<"="<<y<<" "<<TO_STRING(z)<<"="<<z<<endl;

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

#define MAX_V 300000
struct edge{
    lli to;
    double cost;
};
bool operator< (const edge &l, const edge &r){
    return l.cost < r.cost;
}
bool operator> (const edge &l, const edge &r){
    return l.cost > r.cost;
}
vector<edge> G[MAX_V];
lli N;
vector<double> dijkstra(lli s){
    priority_queue<edge,vector<edge>,greater<edge>> que;
    vector<double> d(N+2,INF);
    //fill(d,d+n+2,INF);
    d[s]=0;
    que.push({s,0});

    while(!que.empty())
    {
        edge p = que.top();
        que.pop();
        lli v = p.to;
        LOG2(p.to,p.cost);
        if(d[v] < p.cost)continue;

        for(lli i=0;i<G[v].size();i++){
            edge e = G[v][i];
            if(d[e.to] > d[v]+e.cost){
                d[e.to] = d[v]+e.cost;
                que.push({e.to,d[e.to]});
            }
        }
    }
    return d;
}

lli x[200100];
lli y[200100];

int main(){

    lli M;
    cin>>N>>M; 

    lli st,en;
    cin>>st>>en;
    st--,en--;

    REP(i,0,N)cin>>x[i]>>y[i];

    REP(i,0,M){
        lli p,q;
        cin>>p>>q;
        p--,q--;
        lli diffX = x[p]-x[q];
        lli diffY = y[p]-y[q];
        double cost = sqrt(diffX*diffX + diffY*diffY);
        LOG3(p,q,cost);
        G[p].push_back({q,cost});
        G[q].push_back({p,cost});
    }

    auto dist = dijkstra(st);
    cout<<setprecision(15);
    cout<<dist[en]<<endl;

    return 0;
}
0