結果
問題 | No.1065 電柱 / Pole (Easy) |
ユーザー | udonman |
提出日時 | 2020-09-17 09:04:56 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 2,325 bytes |
コンパイル時間 | 1,149 ms |
コンパイル使用メモリ | 105,588 KB |
実行使用メモリ | 34,536 KB |
最終ジャッジ日時 | 2024-06-22 06:24:27 |
合計ジャッジ時間 | 23,660 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
ソースコード
#include <iostream> #include <string> #include <vector> #include <algorithm> #include <utility> #include <tuple> #include <cstdint> #include <cstdio> #include <map> #include <queue> #include <set> #include <stack> #include <deque> #include <unordered_map> #include <unordered_set> #include <bitset> #include <cctype> #include <numeric> #include <cmath> #include <iomanip> //cout << fixed << setprecision(15) << << endl; #include <cassert> #include <limits> //#include "atcoder/all" using namespace std; //using namespace atcoder; #define ll long long int #define pb push_back #define rep(i,n) for(int i=0;i<(n);i++) #define REP(i,n) for(int i=1;i<=(n);i++) //#define P pair<int,int> int mx8[] = {0,0,1,-1,-1,1,-1,1}; int my8[] = {-1,1,0,0,-1,-1,1,1}; int mx4[] = {1,-1,0,0}; int my4[] = {0,0,-1,1}; template<typename T> class Graph { public: struct Edge { int to; T cost; }; struct edge { int from; int to; }; vector<vector<Edge>> g; int n; Graph(int n) { g.resize(n); } void Add(int from, int to, T cost) { g[from].push_back({to,cost}); g[to].push_back({from,cost}); } }; template<typename T> vector<T> dijkstra(Graph<T> G, int start) { using P = pair<T,int>; vector<T> dist(G.n, numeric_limits<T>::max()); priority_queue<P,vector<P>,greater<P>> pq; dist[start] = 0; pq.push({dist[start],start}); while(!pq.empty()) { T COST = pq.top().first; int v = pq.top().second; pq.pop(); if(dist[v] < COST) { continue; } for(auto e : G.g[v]) { int j = e.to; T c = e.cost; if(dist[j] > dist[v] + c) { dist[j] = dist[v] + c; pq.push({dist[j],j}); } } } return dist; } int main(){ int n, m, x, y; cin >> n >> m >> x >> y; --x; --y; vector<double> p(n),q(n); rep(i,n) cin >> p[i] >> q[i]; Graph<double> G(n); rep(i,m){ int P, Q; cin >> P >> Q; P--; Q--; double Co = sqrt(pow((p[P]-p[Q]),2) + pow((q[P]-q[Q]),2)); G.Add(P,Q,Co); } vector<double> ans; ans = dijkstra(G,x); cout << fixed << setprecision(10) << ans[y] << endl; }