結果
問題 | No.1065 電柱 / Pole (Easy) |
ユーザー | m_9719 |
提出日時 | 2020-05-29 21:39:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 316 ms / 2,000 ms |
コード長 | 2,147 bytes |
コンパイル時間 | 1,888 ms |
コンパイル使用メモリ | 180,904 KB |
実行使用メモリ | 26,884 KB |
最終ジャッジ日時 | 2024-11-06 02:57:19 |
合計ジャッジ時間 | 8,373 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
9,436 KB |
testcase_01 | AC | 5 ms
9,948 KB |
testcase_02 | AC | 130 ms
16,308 KB |
testcase_03 | AC | 168 ms
25,600 KB |
testcase_04 | AC | 166 ms
25,092 KB |
testcase_05 | AC | 124 ms
25,332 KB |
testcase_06 | AC | 126 ms
26,884 KB |
testcase_07 | AC | 46 ms
12,216 KB |
testcase_08 | AC | 161 ms
22,356 KB |
testcase_09 | AC | 18 ms
10,244 KB |
testcase_10 | AC | 74 ms
14,996 KB |
testcase_11 | AC | 52 ms
12,732 KB |
testcase_12 | AC | 31 ms
12,120 KB |
testcase_13 | AC | 144 ms
18,748 KB |
testcase_14 | AC | 166 ms
21,052 KB |
testcase_15 | AC | 197 ms
21,948 KB |
testcase_16 | AC | 82 ms
17,024 KB |
testcase_17 | AC | 213 ms
23,212 KB |
testcase_18 | AC | 58 ms
13,884 KB |
testcase_19 | AC | 198 ms
22,076 KB |
testcase_20 | AC | 50 ms
12,332 KB |
testcase_21 | AC | 69 ms
15,324 KB |
testcase_22 | AC | 183 ms
21,820 KB |
testcase_23 | AC | 6 ms
9,436 KB |
testcase_24 | AC | 6 ms
9,824 KB |
testcase_25 | AC | 28 ms
12,060 KB |
testcase_26 | AC | 103 ms
15,884 KB |
testcase_27 | AC | 104 ms
17,164 KB |
testcase_28 | AC | 190 ms
22,076 KB |
testcase_29 | AC | 20 ms
11,228 KB |
testcase_30 | AC | 200 ms
22,460 KB |
testcase_31 | AC | 137 ms
19,132 KB |
testcase_32 | AC | 85 ms
15,308 KB |
testcase_33 | AC | 196 ms
24,140 KB |
testcase_34 | AC | 64 ms
14,500 KB |
testcase_35 | AC | 206 ms
22,712 KB |
testcase_36 | AC | 6 ms
9,052 KB |
testcase_37 | AC | 7 ms
9,568 KB |
testcase_38 | AC | 5 ms
9,052 KB |
testcase_39 | AC | 6 ms
9,816 KB |
testcase_40 | AC | 5 ms
8,960 KB |
testcase_41 | AC | 316 ms
23,552 KB |
testcase_42 | AC | 79 ms
13,896 KB |
testcase_43 | AC | 147 ms
16,396 KB |
testcase_44 | AC | 46 ms
11,196 KB |
testcase_45 | AC | 145 ms
16,692 KB |
testcase_46 | AC | 5 ms
8,928 KB |
testcase_47 | AC | 4 ms
8,664 KB |
ソースコード
#include <bits/stdc++.h> 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 FOR(i,a,b) for(int i=a; i<(int)(b); i++) #define ALL(x) (x).begin(),(x).end() #define RALL(a) (a).rbegin(), (a).rend() #define CLR(a) memset((a), 0 ,sizeof(a)) #define PB push_back #define MP make_pair #define SP << " " << const int INF = 1001001001; const ll LINF = 100100100100100100; const double EPS = 1e-10; const long double PI = acos(-1.0L); typedef pair<int,int> PII; typedef pair<ll,ll> PLL; typedef pair<double,double> PDD; typedef pair<double,int> PDI; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<ll> VL; #define chmax(a,b) a = (((a)<(b))?(b):(a)) #define chmin(a,b) a = (((a)>(b))?(b):(a)) __attribute__((constructor)) void initial(){ cin.tie(nullptr); ios::sync_with_stdio(false); cout << fixed << setprecision(15); } // queueを用いた場合の実装(経路復元無し) const int MAX_E = 200100; const int MAX_V = 200100; struct edge{int to; double cost;}; int V; vector<edge> G[MAX_V]; double d[MAX_V]; void dijkstra(int s){ // greater<PII>を指定することでfirstが小さい順に取り出せるようにする priority_queue<PDI, vector<PDI>, greater<PDI> > que; fill(d,d+V,(double)INF); d[s] = 0.0; que.push(MP(0.0,s)); while(!que.empty()){ PII 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(PII(d[e.to], e.to)); } } } } signed main(){ int n,m; cin>>n>>m; V=n; int x,y; cin>>x>>y; x--; y--; vector<PDD> t; rep(i,n){ double p,q; cin>>p>>q; t.PB(MP(p,q)); } rep(i,m){ int p,q; cin>>p>>q; p--; q--; double d=pow(pow(t[p].first-t[q].first,2.0)+pow(t[p].second-t[q].second,2.0),0.50); edge e1; e1.to=q; e1.cost=d; G[p].PB(e1); e1.to=p; G[q].PB(e1); } dijkstra(x); cout<<d[y]<<endl; return 0; }