結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー FF256grhyFF256grhy
提出日時 2023-08-23 18:18:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 2,949 bytes
コンパイル時間 2,515 ms
コンパイル使用メモリ 215,160 KB
実行使用メモリ 21,480 KB
最終ジャッジ日時 2024-12-22 01:37:29
合計ジャッジ時間 11,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 145 ms
12,456 KB
testcase_03 AC 224 ms
20,404 KB
testcase_04 AC 218 ms
20,996 KB
testcase_05 AC 187 ms
20,416 KB
testcase_06 AC 184 ms
21,480 KB
testcase_07 AC 62 ms
7,936 KB
testcase_08 AC 238 ms
20,272 KB
testcase_09 AC 20 ms
6,820 KB
testcase_10 AC 105 ms
10,880 KB
testcase_11 AC 71 ms
8,576 KB
testcase_12 AC 49 ms
7,296 KB
testcase_13 AC 152 ms
13,760 KB
testcase_14 AC 170 ms
15,940 KB
testcase_15 AC 212 ms
17,516 KB
testcase_16 AC 103 ms
11,076 KB
testcase_17 AC 227 ms
18,648 KB
testcase_18 AC 73 ms
8,960 KB
testcase_19 AC 212 ms
17,880 KB
testcase_20 AC 57 ms
7,424 KB
testcase_21 AC 88 ms
10,368 KB
testcase_22 AC 191 ms
16,700 KB
testcase_23 AC 4 ms
6,820 KB
testcase_24 AC 5 ms
6,816 KB
testcase_25 AC 45 ms
6,912 KB
testcase_26 AC 108 ms
11,944 KB
testcase_27 AC 113 ms
11,764 KB
testcase_28 AC 195 ms
17,164 KB
testcase_29 AC 28 ms
6,816 KB
testcase_30 AC 207 ms
18,560 KB
testcase_31 AC 139 ms
15,052 KB
testcase_32 AC 90 ms
10,604 KB
testcase_33 AC 204 ms
19,732 KB
testcase_34 AC 78 ms
8,960 KB
testcase_35 AC 212 ms
18,892 KB
testcase_36 AC 3 ms
6,820 KB
testcase_37 AC 4 ms
6,816 KB
testcase_38 AC 3 ms
6,816 KB
testcase_39 AC 4 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 339 ms
21,184 KB
testcase_42 AC 84 ms
8,960 KB
testcase_43 AC 159 ms
12,800 KB
testcase_44 AC 56 ms
6,912 KB
testcase_45 AC 153 ms
12,364 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using LL = long long int;
#define incID(i, l, r) for(int i = (l)    ; i <  (r); ++i)
#define decID(i, l, r) for(int i = (r) - 1; i >= (l); --i)
#define incII(i, l, r) for(int i = (l)    ; i <= (r); ++i)
#define decII(i, l, r) for(int i = (r)    ; i >= (l); --i)
#define inc(i, n)  incID(i, 0, n)
#define dec(i, n)  decID(i, 0, n)
#define inc1(i, n) incII(i, 1, n)
#define dec1(i, n) decII(i, 1, n)
#define inID(v, l, r) ((l) <= (v) && (v) <  (r))
#define inII(v, l, r) ((l) <= (v) && (v) <= (r))
#define PB push_back
#define EB emplace_back
#define MP make_pair
#define MT make_tuple
#define FI first
#define SE second
#define FR front()
#define BA back()
#define ALL(v) v.begin(), v.end()
#define RALL(v) v.rbegin(), v.rend()
auto setmin   = [](auto & a, auto b) { return (b <  a ? a = b, true : false); };
auto setmax   = [](auto & a, auto b) { return (b >  a ? a = b, true : false); };
auto setmineq = [](auto & a, auto b) { return (b <= a ? a = b, true : false); };
auto setmaxeq = [](auto & a, auto b) { return (b >= a ? a = b, true : false); };
#define SI(v) static_cast<int>(v.size())
#define RF(e, v) for(auto & e: v)
#define until(e) while(! (e))
#define if_not(e) if(! (e))
#define ef else if
#define UR assert(false)

template<typename T, typename U> istream & operator>>(istream & s, pair<T, U> & p) { return (s >> p.FI >> p.SE); }
template<typename T, typename U> ostream & operator<<(ostream & s, pair<T, U> const & p) { return (s << p.FI << " " << p.SE); }

template<typename T> istream & operator>>(istream & s, vector<T> & v) { RF(e, v) { s >> e; } return s; }
template<typename T> ostream & operator<<(ostream & s, vector<T> const & v) {
	inc(i, SI(v)) { s << (i == 0 ? "" : " ") << v[i]; }
	return s;
}

#define IN(T, ...) T __VA_ARGS__; IN_(__VA_ARGS__);
void IN_() { };
template<typename T, typename ... U> void IN_(T &  a, U &  ... b) { cin >> a; IN_(b ...); };
template<typename T                > void OUT(T && a            ) { cout << a << endl; }
template<typename T, typename ... U> void OUT(T && a, U && ... b) { cout << a << " "; OUT(b ...); }

// ---- ----

template<typename T> using LPQ = priority_queue<T, vector<T>, greater<T>>;
template<typename C> void dijkstra(int s, vector<vector<pair<int, C>>> const & g, vector<C> & d) {
	LPQ<pair<C, int>> q;
	d[s] = 0;
	q.emplace(d[s], s);
	while(! q.empty()) {
		C   c = q.top().FI;
		int v = q.top().SE;
		q.pop();
		if(d[v] != c) { continue; }
		for(auto & e : g[v]) {
			int ev = e.FI;
			C   ec = e.SE;
			if(setmin(d[ev], d[v] + ec)) { q.emplace(d[ev], ev); }
		}
	}
}

int main() {
	IN(int, n, m, x, y);
	x--; y--;
	vector<pair<int, int>> p(n);
	cin >> p;
	vector<vector<pair<int, double>>> g(n);
	inc(i, m) {
		IN(int, a, b);
		a--; b--;
		double d = hypot(p[a].FI - p[b].FI, p[a].SE - p[b].SE);
		g[a].EB(b, d);
		g[b].EB(a, d);
	}
	const double INF = 1e9;
	vector<double> d(n, INF);
	dijkstra(x, g, d);
	OUT(d[y]);
}
0