結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー ngtkanangtkana
提出日時 2020-04-20 19:45:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 2,119 bytes
コンパイル時間 2,558 ms
コンパイル使用メモリ 222,592 KB
実行使用メモリ 40,416 KB
最終ジャッジ日時 2024-10-01 23:16:57
合計ジャッジ時間 9,076 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 130 ms
20,820 KB
testcase_03 AC 193 ms
36,376 KB
testcase_04 AC 190 ms
38,132 KB
testcase_05 AC 150 ms
36,868 KB
testcase_06 AC 152 ms
40,416 KB
testcase_07 AC 46 ms
12,248 KB
testcase_08 AC 171 ms
35,904 KB
testcase_09 AC 16 ms
6,816 KB
testcase_10 AC 76 ms
18,008 KB
testcase_11 AC 51 ms
13,480 KB
testcase_12 AC 36 ms
11,008 KB
testcase_13 AC 138 ms
23,572 KB
testcase_14 AC 167 ms
29,728 KB
testcase_15 AC 196 ms
32,724 KB
testcase_16 AC 94 ms
18,276 KB
testcase_17 AC 222 ms
36,504 KB
testcase_18 AC 65 ms
14,324 KB
testcase_19 AC 219 ms
34,672 KB
testcase_20 AC 49 ms
11,128 KB
testcase_21 AC 81 ms
17,064 KB
testcase_22 AC 182 ms
29,540 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 4 ms
6,816 KB
testcase_25 AC 34 ms
10,624 KB
testcase_26 AC 99 ms
20,208 KB
testcase_27 AC 102 ms
20,620 KB
testcase_28 AC 197 ms
33,576 KB
testcase_29 AC 22 ms
8,192 KB
testcase_30 AC 201 ms
34,568 KB
testcase_31 AC 131 ms
29,620 KB
testcase_32 AC 79 ms
18,348 KB
testcase_33 AC 207 ms
38,816 KB
testcase_34 AC 69 ms
14,604 KB
testcase_35 AC 220 ms
34,712 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,816 KB
testcase_40 AC 2 ms
6,816 KB
testcase_41 AC 392 ms
37,140 KB
testcase_42 AC 73 ms
14,104 KB
testcase_43 AC 140 ms
21,420 KB
testcase_44 AC 44 ms
10,168 KB
testcase_45 AC 144 ms
21,040 KB
testcase_46 AC 2 ms
6,816 KB
testcase_47 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* validator */

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

int main(){
    auto read=[]{
        std::string s;std::getline(std::cin,s);
        lint n=s.length();
        lint l=0,r;
        for(r=l;r<n&&s.at(r)!=' ';r++);
        assert(r-l<=9);
        lint x=std::stoll(s.substr(l,r-l));
        l=r+1;
        for(r=l;r<n&&s.at(r)!=' ';r++);
        assert(r-l<=9);
        lint y=std::stoll(s.substr(l,r-l));
        return std::pair{x,y};
    };
    auto[n,m]=read();
    assert(2<=n&&n<=200'000&&n-1<=m&&m<=std::min(n*(n-1)/2,200'000ll));
    auto[s,t]=read();
    assert(1<=s&&s<=n&&1<=t&&t<=n);
    s--,t--;
    std::vector<std::pair<ld,ld>>pt(n);
    for(lint i=0;i<n;i++){
        auto[x,y]=read();
        assert(-1'000<=x&&x<=1'000&&-1'000<=y&&y<=1'000);
        pt.at(i)={x,y};
    }
    std::vector<std::vector<std::pair<lint,ld>>>g(n);
    for(lint i=0;i<m;i++){
        auto[u,v]=read();
        assert(1<=u&&u<=n&&1<=v&&v<=n);
        u--,v--;
        ld w=std::hypot(pt.at(u).first-pt.at(v).first,pt.at(u).second-pt.at(v).second);
        g.at(u).emplace_back(v,w);
        g.at(v).emplace_back(u,w);
    }
    std::vector<lint>que,ckd(n);
    que.push_back(s);
    ckd.at(s)=true;
    for(lint k=0;k<(lint)que.size();k++){
        lint x=que.at(k);
        for(auto[y,_]:g.at(x)){
            if(std::exchange(ckd.at(y),true))continue;
            que.push_back(y);
        }
    }
    assert(ckd.at(t));
    assert(!std::cin.eof());
    std::string emplyline;std::getline(std::cin,emplyline);
    assert(std::cin.eof());

    ld inf=numr<ld>::infinity();
    std::vector<ld>dist(n,inf);
    std::priority_queue<std::pair<ld,lint>>pque;
    dist.at(s)=0;
    pque.emplace(0,s);
    while(!pque.empty()){
        lint x;std::tie(std::ignore,x)=pque.top();pque.pop();
        for(auto[y,w]:g.at(x)){
            ld d=dist.at(x)+w;
            if(dist.at(y)<=d)continue;
            dist.at(y)=d;
            pque.emplace(-d,y);
        }
    }
    std::cout<<dist.at(t)<<'\n';
}
0