結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー HEXAebmrHEXAebmr
提出日時 2020-05-29 22:06:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 437 ms / 2,000 ms
コード長 3,655 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 126,396 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-04-23 22:38:50
合計ジャッジ時間 9,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 190 ms
30,596 KB
testcase_03 AC 277 ms
53,928 KB
testcase_04 AC 278 ms
51,484 KB
testcase_05 AC 242 ms
54,240 KB
testcase_06 AC 270 ms
51,236 KB
testcase_07 AC 79 ms
19,336 KB
testcase_08 AC 302 ms
52,524 KB
testcase_09 AC 27 ms
9,428 KB
testcase_10 AC 133 ms
27,188 KB
testcase_11 AC 92 ms
19,536 KB
testcase_12 AC 54 ms
19,024 KB
testcase_13 AC 201 ms
36,824 KB
testcase_14 AC 249 ms
42,160 KB
testcase_15 AC 287 ms
48,428 KB
testcase_16 AC 129 ms
28,124 KB
testcase_17 AC 314 ms
51,156 KB
testcase_18 AC 87 ms
22,220 KB
testcase_19 AC 290 ms
47,604 KB
testcase_20 AC 74 ms
16,740 KB
testcase_21 AC 103 ms
26,816 KB
testcase_22 AC 260 ms
45,484 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 5 ms
6,940 KB
testcase_25 AC 49 ms
18,000 KB
testcase_26 AC 145 ms
30,820 KB
testcase_27 AC 159 ms
30,896 KB
testcase_28 AC 265 ms
47,824 KB
testcase_29 AC 30 ms
12,752 KB
testcase_30 AC 287 ms
51,436 KB
testcase_31 AC 198 ms
35,960 KB
testcase_32 AC 126 ms
23,996 KB
testcase_33 AC 281 ms
47,296 KB
testcase_34 AC 96 ms
20,652 KB
testcase_35 AC 289 ms
48,504 KB
testcase_36 AC 4 ms
6,944 KB
testcase_37 AC 5 ms
6,940 KB
testcase_38 AC 3 ms
6,940 KB
testcase_39 AC 4 ms
6,940 KB
testcase_40 AC 3 ms
6,944 KB
testcase_41 AC 437 ms
53,868 KB
testcase_42 AC 122 ms
21,744 KB
testcase_43 AC 210 ms
31,660 KB
testcase_44 AC 69 ms
14,676 KB
testcase_45 AC 208 ms
31,080 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <string>
#include <stack>
#include <vector>
#include <complex>
#include <math.h>
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <iterator>
#include <map>
#include <set>
#include <queue>
#include <list>
#include <regex>
#include <limits>
#include <time.h>
#include <cstdint>
using namespace std;
using pii  = pair<int,int>;
using ll=long long;
using ld=long double;
#define pb push_back
#define mp make_pair
#define sc second
#define fr first
#define stpr setprecision
#define cYES cout<<"YES"<<endl
#define cNO cout<<"NO"<<endl
#define cYes cout<<"Yes"<<endl
#define cNo cout<<"No"<<endl
#define rep(i,n) for(ll i=0;i<(n);++i)
#define Rep(i,a,b) for(ll i=(a);i<(b);++i)
#define rrep(i,n) for(ll i=n-1;i>=0;i--)
#define rRep(i,a,b) for(ll i=a;i>=b;i--)
#define crep(i) for(char i='a';i<='z';++i)
#define psortsecond(A,N) sort(A,A+N,[](const pii &a, const pii &b){return a.second<b.second;});
#define ALL(x) (x).begin(),(x).end()
#define debug(v) cout<<#v<<":";for(auto x:v){cout<<x<<' ';}cout<<endl;
#define endl '\n'
int ctoi(const char c){
  if('0' <= c && c <= '9') return (c-'0');
  return -1;
}
ll gcd(ll a,ll b){return (b == 0 ? a : gcd(b, a%b));}
ll lcm(ll a,ll b){return a*b/gcd(a,b);}
constexpr ll MOD=1000000007;
constexpr ll INF=1000000011;
constexpr ll MOD2=998244353;
constexpr ll LINF = 1001002003004005006ll;
constexpr ld EPS=10e-8;
template <class T, class U> inline bool chmax(T& lhs, const U& rhs) { if (lhs < rhs) { lhs = rhs; return 1; } return 0; }
template <class T, class U> inline bool chmin(T& lhs, const U& rhs) { if (lhs > rhs) { lhs = rhs; return 1; } return 0; }
template<typename T> istream& operator>>(istream& is,vector<T>& v){for(auto&& x:v)is >> x;return is;}
template<typename T,typename U> istream& operator>>(istream& is, pair<T,U>& p){ is >> p.first; is >> p.second; return is;}
template<typename T,typename U> ostream& operator>>(ostream& os, const pair<T,U>& p){ os << p.first << ' ' << p.second; return os;}
template<class T> ostream& operator<<(ostream& os, vector<T>& v){
  for(auto i=begin(v); i != end(v); ++i){
    if(i !=begin(v)) os << ' ';
    os << *i;
  }
  return os;
}

ld A[200007],B[200007];

struct Edge {
    ll to;ld cost;
    Edge(ll to, ld cost) : to(to), cost(cost) {}
};

typedef vector<vector<Edge> > AdjList; // 辺の情報
typedef vector<ld> dis_dijkstra; // 距離のvector


dis_dijkstra dijkstra(ll n ,AdjList A,ll st ,ld weigh){// 頂点数 n ,グラフ A ,始点 st ,初期値 weigh
    dis_dijkstra DIS;
    vector<bool> chek;
    DIS = vector<ld>(n+1, LINF);
    chek = vector<bool>(n+1, 0); 
    DIS[st]=weigh;
    ll key=st;
    priority_queue <pair<ld,ll>> PQ;
    PQ.push(mp(weigh,st));
    while(PQ.empty()!=1){
        pair<ld,ll> f = PQ.top();
        PQ.pop();
        key=f.second;
        chek[key]=1;
        if(DIS[key] < f.first*(-1)){
            continue;
        }
        rep(j,A[key].size()){
            ld v = A[key][j].to;
            if(chek[v]==0 && DIS[v]>DIS[key]+A[key][j].cost){
                DIS[v] = DIS[key] + A[key][j].cost;
                PQ.push(mp(DIS[v]*(-1),v));                      //ここ
            }
        }
    }
    return DIS;
}

int main(){
  ll N,M,X,Y,x,y;
  cin>> N >> M >> X  >> Y;
  rep(i,N){
    cin >>  A[i+1] >> B[i+1];
  }
  AdjList graph;
  graph = AdjList(N+1);

  rep(i,M){
    cin >> x >> y;
    ld L=sqrt((A[x]-A[y])*(A[x]-A[y])+(B[x]-B[y])*(B[x]-B[y]));
    graph[x].push_back(Edge(y, L));
    graph[y].push_back(Edge(x, L));
  }

  dis_dijkstra dis = dijkstra(N,graph,X,0LL);
  cout <<  stpr(10) << dis[Y] << endl;
}
0