結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー Jiro_tech15Jiro_tech15
提出日時 2020-05-29 21:36:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 1,641 bytes
コンパイル時間 1,170 ms
コンパイル使用メモリ 107,128 KB
実行使用メモリ 23,984 KB
最終ジャッジ日時 2024-11-06 02:49:23
合計ジャッジ時間 9,083 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,028 KB
testcase_01 AC 4 ms
8,644 KB
testcase_02 AC 171 ms
15,784 KB
testcase_03 AC 235 ms
23,580 KB
testcase_04 AC 232 ms
23,740 KB
testcase_05 AC 191 ms
23,984 KB
testcase_06 AC 192 ms
23,696 KB
testcase_07 AC 67 ms
11,940 KB
testcase_08 AC 245 ms
21,800 KB
testcase_09 AC 25 ms
10,244 KB
testcase_10 AC 110 ms
15,000 KB
testcase_11 AC 75 ms
12,808 KB
testcase_12 AC 53 ms
11,832 KB
testcase_13 AC 177 ms
18,620 KB
testcase_14 AC 199 ms
21,152 KB
testcase_15 AC 232 ms
21,184 KB
testcase_16 AC 118 ms
15,728 KB
testcase_17 AC 253 ms
22,032 KB
testcase_18 AC 82 ms
14,280 KB
testcase_19 AC 238 ms
21,288 KB
testcase_20 AC 66 ms
12,452 KB
testcase_21 AC 102 ms
14,868 KB
testcase_22 AC 217 ms
21,036 KB
testcase_23 AC 6 ms
8,644 KB
testcase_24 AC 6 ms
8,648 KB
testcase_25 AC 48 ms
11,628 KB
testcase_26 AC 127 ms
16,028 KB
testcase_27 AC 133 ms
16,148 KB
testcase_28 AC 231 ms
21,068 KB
testcase_29 AC 30 ms
10,560 KB
testcase_30 AC 236 ms
21,752 KB
testcase_31 AC 164 ms
19,132 KB
testcase_32 AC 108 ms
15,184 KB
testcase_33 AC 235 ms
23,748 KB
testcase_34 AC 88 ms
13,256 KB
testcase_35 AC 235 ms
21,868 KB
testcase_36 AC 6 ms
9,544 KB
testcase_37 AC 6 ms
8,772 KB
testcase_38 AC 5 ms
8,488 KB
testcase_39 AC 6 ms
9,412 KB
testcase_40 AC 4 ms
8,528 KB
testcase_41 AC 380 ms
22,656 KB
testcase_42 AC 102 ms
12,908 KB
testcase_43 AC 187 ms
16,644 KB
testcase_44 AC 62 ms
11,176 KB
testcase_45 AC 177 ms
15,656 KB
testcase_46 AC 5 ms
8,516 KB
testcase_47 AC 4 ms
8,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <math.h>
#include <iomanip>
#include <limits>
#include <list>
#include <queue>
#include <tuple>
#include <map>
using namespace std;
#define MOD (long long int)(1e9+7)
#define ll long long int
#define rep(i,n) for(int i=0; i<(int)(n); i++)
#define reps(i,n) for(int i=1; i<=(int)(n); i++)
#define REP(i,n) for(int i=n-1; i>=0; i--)
#define REPS(i,n) for(int i=n; i>0; i--)
#define INF (int)(1123456789)
#define LINF (long long int)(112345678901234567)
#define MAX_V 200005
//lower_bound使え

struct edge{int to; double cost;};
typedef pair<double, int> P;//最短距離、頂点番号

int V;
vector<edge> G[MAX_V];
double d[MAX_V];

void dijkstra(int s){
  priority_queue<P, vector<P>, greater<P> > que;
  fill(d,d+V,LINF);
  d[s] = 0;
  que.push(P(0,s));

  while(!que.empty()){
    P p = que.top(); que.pop();
    int v = p.second;
    if(d[v] < p.first) continue;
    rep(i, G[v].size()){
      edge e = G[v][i];
      if(d[e.to] > d[v] + e.cost){
        d[e.to] = d[v] + e.cost;
        que.push(P(d[e.to], e.to));
      }
    }
  }
}

/*
 * 頂点数をVに代入すること
 */
int main(void){
  cout<<fixed<<setprecision(15);
  int n,m;cin>>n>>m;
  V=n;
  int s,t;cin>>s>>t;s--;t--;

  vector<ll> X,Y;
  rep(i,n){
    int p,q;cin>>p>>q;
    X.push_back(p);
    Y.push_back(q);
  }
  rep(i,m){
    int p,q;cin>>p>>q;
    p--;q--;
    double dist = sqrt((X[p]-X[q]) * (X[p]-X[q]) + (Y[p]-Y[q]) * (Y[p]-Y[q]));
    G[p].push_back({q,dist});
    G[q].push_back({p,dist});
  }

  dijkstra(s);
  cout << d[t] << endl;
  return 0;
}
0