結果

問題 No.1065 電柱 / Pole (Easy)
ユーザー jupirojupiro
提出日時 2020-06-04 17:16:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 2,184 bytes
コンパイル時間 1,348 ms
コンパイル使用メモリ 143,820 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-11-29 14:51:13
合計ジャッジ時間 7,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 72 ms
12,416 KB
testcase_03 AC 109 ms
20,164 KB
testcase_04 AC 106 ms
19,900 KB
testcase_05 AC 86 ms
20,032 KB
testcase_06 AC 85 ms
20,032 KB
testcase_07 AC 26 ms
7,808 KB
testcase_08 AC 96 ms
20,352 KB
testcase_09 AC 10 ms
5,248 KB
testcase_10 AC 45 ms
10,880 KB
testcase_11 AC 31 ms
8,576 KB
testcase_12 AC 21 ms
7,168 KB
testcase_13 AC 76 ms
13,660 KB
testcase_14 AC 89 ms
16,060 KB
testcase_15 AC 98 ms
17,516 KB
testcase_16 AC 52 ms
11,072 KB
testcase_17 AC 116 ms
18,652 KB
testcase_18 AC 38 ms
8,832 KB
testcase_19 AC 103 ms
18,012 KB
testcase_20 AC 27 ms
7,316 KB
testcase_21 AC 43 ms
10,368 KB
testcase_22 AC 98 ms
16,708 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 3 ms
5,248 KB
testcase_25 AC 20 ms
7,040 KB
testcase_26 AC 57 ms
11,820 KB
testcase_27 AC 60 ms
11,756 KB
testcase_28 AC 104 ms
17,288 KB
testcase_29 AC 14 ms
6,016 KB
testcase_30 AC 102 ms
18,688 KB
testcase_31 AC 69 ms
15,048 KB
testcase_32 AC 45 ms
10,600 KB
testcase_33 AC 107 ms
19,348 KB
testcase_34 AC 39 ms
8,960 KB
testcase_35 AC 102 ms
18,888 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 3 ms
5,248 KB
testcase_39 AC 3 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 173 ms
20,864 KB
testcase_42 AC 43 ms
8,832 KB
testcase_43 AC 78 ms
12,672 KB
testcase_44 AC 27 ms
6,912 KB
testcase_45 AC 76 ms
12,544 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
//constexpr long long mod = 1000000007LL;
constexpr long long mod = 998244353LL;
const long double PI = acos((long double)(-1));
using namespace std;
typedef unsigned long long ull;
typedef long long ll;

vector<double> dijkstra(int start, vector<vector<pair<int, double>>>& graph) {
	vector<double> dist(graph.size(), INF); dist[start] = 0;
	priority_queue<pair<double, int>, vector<pair<double, int>>, greater<pair<double, int>>> pq; pq.emplace(0, start);
	while (!pq.empty()) {
		double cost; int idx; tie(cost, idx) = pq.top(); pq.pop();
		if (dist[idx] < cost) continue;
		for (auto next : graph[idx]) if (chmin(dist[next.first], cost + next.second)) pq.emplace(dist[next.first], next.first);
	}
	return dist;
}

using P = pair<int, int>;
double dist(P a, P b) {
	double dx = a.first - b.first;
	double dy = a.second - b.second;
	return sqrt(dx * dx + dy * dy);
}
int main()
{
    /*
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    */
	int n, m; scanf("%d %d", &n, &m);
	int x, y; scanf("%d %d", &x, &y); x--; y--;
	vector<vector<pair<int, double>>> g(n);
	vector<P> vp(n);
	for (int i = 0; i < n; i++) scanf("%d %d", &vp[i].first, &vp[i].second);
	for (int i = 0; i < m; i++) {
		int u, v; scanf("%d %d", &u, &v);
		u--; v--;
		g[u].emplace_back(v, dist(vp[u], vp[v]));
		g[v].emplace_back(u, dist(vp[u], vp[v]));
	}
	auto dist = dijkstra(x, g);
	cout << fixed << setprecision(12) << dist[y] << endl;
    return 0;
}
0