結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ngtkanangtkana
提出日時 2020-04-20 21:22:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 1,195 bytes
コンパイル時間 2,611 ms
コンパイル使用メモリ 216,456 KB
実行使用メモリ 34,968 KB
最終ジャッジ日時 2024-10-01 23:17:15
合計ジャッジ時間 8,907 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,824 KB
testcase_02 AC 132 ms
17,660 KB
testcase_03 AC 160 ms
32,584 KB
testcase_04 AC 158 ms
33,696 KB
testcase_05 AC 118 ms
32,732 KB
testcase_06 AC 117 ms
34,968 KB
testcase_07 AC 32 ms
10,240 KB
testcase_08 AC 113 ms
29,688 KB
testcase_09 AC 11 ms
6,816 KB
testcase_10 AC 52 ms
14,976 KB
testcase_11 AC 35 ms
11,520 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 142 ms
21,404 KB
testcase_14 AC 160 ms
26,052 KB
testcase_15 AC 192 ms
28,744 KB
testcase_16 AC 89 ms
17,176 KB
testcase_17 AC 205 ms
29,380 KB
testcase_18 AC 59 ms
13,456 KB
testcase_19 AC 191 ms
28,560 KB
testcase_20 AC 44 ms
9,936 KB
testcase_21 AC 72 ms
16,464 KB
testcase_22 AC 176 ms
26,512 KB
testcase_23 AC 4 ms
6,816 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 26 ms
10,496 KB
testcase_26 AC 103 ms
17,932 KB
testcase_27 AC 104 ms
17,888 KB
testcase_28 AC 189 ms
28,692 KB
testcase_29 AC 18 ms
8,320 KB
testcase_30 AC 189 ms
31,556 KB
testcase_31 AC 134 ms
25,260 KB
testcase_32 AC 83 ms
15,576 KB
testcase_33 AC 195 ms
33,552 KB
testcase_34 AC 70 ms
13,448 KB
testcase_35 AC 206 ms
31,836 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 2 ms
6,820 KB
testcase_41 AC 290 ms
31,076 KB
testcase_42 AC 67 ms
12,160 KB
testcase_43 AC 136 ms
18,048 KB
testcase_44 AC 43 ms
8,832 KB
testcase_45 AC 133 ms
17,920 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
using lint=long long;
using ld=long double;
template<class T>using numr=std::numeric_limits<T>;
auto cmn=[](auto&x,auto y){if(x>y)x=y;};
int main(){
    std::cin.tie(nullptr);std::ios_base::sync_with_stdio(false);
    std::cout.setf(std::ios_base::fixed);std::cout.precision(15);
    lint n,m;std::cin>>n>>m;
    lint s,t;std::cin>>s>>t;s--,t--;
    std::vector<std::pair<lint,lint>>pt(n);
    for(auto&&p:pt)std::cin>>p.first>>p.second;
    std::vector<std::vector<std::pair<lint,ld>>>g(n);
    while(m--){
         lint u,v;std::cin>>u>>v;u--,v--;
         ld w=std::hypot(pt[u].first-pt[v].first,pt[u].second-pt[v].second);
         g[u].emplace_back(v,w);
         g[v].emplace_back(u,w);
    }
    ld inf=numr<ld>::infinity();
    std::vector<ld>dist(n,inf);
    std::priority_queue<std::pair<ld,lint>>que;
    dist[s]=0;
    que.emplace(0,s);
    while(!que.empty()){
        lint x;std::tie(std::ignore,x)=que.top();que.pop();
        for(auto[y,w]:g[x]){
            ld d=dist[x]+w;
            if(dist[y]<=d)continue;
            dist[y]=d;
            que.emplace(-d,y);
        }
    }
    std::cout<<dist[t]<<'\n';
}

0