結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 104 ms
12,416 KB
testcase_03 AC 128 ms
20,568 KB
testcase_04 AC 126 ms
20,440 KB
testcase_05 AC 97 ms
20,312 KB
testcase_06 AC 97 ms
20,308 KB
testcase_07 AC 30 ms
8,064 KB
testcase_08 AC 106 ms
20,480 KB
testcase_09 AC 11 ms
5,248 KB
testcase_10 AC 48 ms
11,008 KB
testcase_11 AC 33 ms
8,704 KB
testcase_12 AC 24 ms
7,296 KB
testcase_13 AC 106 ms
13,912 KB
testcase_14 AC 123 ms
15,964 KB
testcase_15 AC 138 ms
17,408 KB
testcase_16 AC 65 ms
11,100 KB
testcase_17 AC 153 ms
18,808 KB
testcase_18 AC 44 ms
8,832 KB
testcase_19 AC 147 ms
17,908 KB
testcase_20 AC 33 ms
7,552 KB
testcase_21 AC 55 ms
10,680 KB
testcase_22 AC 133 ms
16,728 KB
testcase_23 AC 3 ms
6,820 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 21 ms
7,040 KB
testcase_26 AC 72 ms
11,840 KB
testcase_27 AC 75 ms
11,908 KB
testcase_28 AC 137 ms
17,436 KB
testcase_29 AC 15 ms
6,820 KB
testcase_30 AC 141 ms
18,580 KB
testcase_31 AC 97 ms
15,072 KB
testcase_32 AC 61 ms
10,752 KB
testcase_33 AC 145 ms
19,240 KB
testcase_34 AC 51 ms
9,272 KB
testcase_35 AC 150 ms
18,916 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 3 ms
6,820 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 2 ms
6,820 KB
testcase_41 AC 247 ms
21,228 KB
testcase_42 AC 57 ms
8,960 KB
testcase_43 AC 113 ms
12,800 KB
testcase_44 AC 32 ms
7,040 KB
testcase_45 AC 106 ms
12,800 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define ALL(v) std::begin(v),std::end(v)
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);
    int n,m;std::cin>>n>>m;
    int s,t;std::cin>>s>>t;s--,t--;
    std::vector<std::pair<int,int>>pt(n);
    for(auto&&p:pt)std::cin>>p.first>>p.second;
    std::vector<std::vector<std::pair<int,double>>>g(n);
    while(m--){
         int u,v;std::cin>>u>>v;u--,v--;
         double 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);
    }
    double inf=numr<double>::infinity();
    std::vector<double>dist(n,inf);
    std::priority_queue<std::pair<double,int>>que;
    dist[s]=0;
    que.emplace(0,s);
    while(!que.empty()){
        int x;std::tie(std::ignore,x)=que.top();que.pop();
        for(auto[y,w]:g[x]){
            double d=dist[x]+w;
            if(dist[y]<=d)continue;
            dist[y]=d;
            que.emplace(-d,y);
        }
    }
    std::cout<<dist[t]<<'\n';
}

0