結果

問題 No.2179 Planet Traveler
ユーザー MasKoaTSMasKoaTS
提出日時 2022-09-06 15:40:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 73 ms / 3,000 ms
コード長 1,196 bytes
コンパイル時間 7,095 ms
コンパイル使用メモリ 271,388 KB
実行使用メモリ 25,132 KB
最終ジャッジ日時 2024-05-07 20:25:54
合計ジャッジ時間 6,644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 45 ms
24,312 KB
testcase_12 AC 47 ms
24,644 KB
testcase_13 AC 49 ms
24,072 KB
testcase_14 AC 41 ms
24,488 KB
testcase_15 AC 46 ms
25,052 KB
testcase_16 AC 42 ms
24,032 KB
testcase_17 AC 60 ms
24,532 KB
testcase_18 AC 58 ms
24,616 KB
testcase_19 AC 51 ms
24,664 KB
testcase_20 AC 10 ms
6,940 KB
testcase_21 AC 73 ms
24,272 KB
testcase_22 AC 45 ms
15,164 KB
testcase_23 AC 24 ms
14,728 KB
testcase_24 AC 42 ms
17,512 KB
testcase_25 AC 32 ms
15,104 KB
testcase_26 AC 43 ms
25,132 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 23 ms
13,936 KB
testcase_29 AC 49 ms
17,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <math.h>
#include <bits/stdc++.h>
#include <atcoder/all>
#define rep(i, l, n) for (int i = (l); i < (n); i++)
#define squ(n) (n) * (n)
using namespace std;
using namespace atcoder;
using ll = long long;
template <class T>	using V = vector<T>;
template <class T>	using PQ = priority_queue<T, V<T>, greater<T> >;

ll isqrt(ll n) {
	double rn = sqrt(double(n));
	ll ok = max(0ll, (ll)(rn - 5.0));
	ll ng = (ll)(rn + 5.0);
	while (ng - ok > 1ll) {
		ll mid = (ok + ng) >> 1ll;
		if (mid * mid <= n) {
			ok = mid;
		}
		else {
			ng = mid;
		}
	}
	return ok;
}


int main(void) {
	int n;	cin >> n;
	V<V<ll> > p(n, V<ll>(3));
	rep(i, 0, n) {
		ll x, y, t;	cin >> x >> y >> t;
		p[i] = { x,y,t };
	}

	PQ<V<ll> > que = {};
	rep(i, 0, n-1) {
		ll r1 = squ(p[i][0]) + squ(p[i][1]);
		rep(j, i + 1, n) {
			ll r2 = squ(p[j][0]) + squ(p[j][1]);
			ll d = squ(p[i][0] - p[j][0]) + squ(p[i][1] - p[j][1]);
			if (p[i][2] != p[j][2]) {
				d = r1 + r2 - isqrt(4ll * r1 * r2);
			}
			que.push({ d,(ll)i,(ll)j });
		}
	}

	ll ans = 0ll;
	dsu uni(n);
	while (uni.same(0, n - 1) == false) {
		V<ll> v = que.top();	que.pop();
		ans = v[0];
		uni.merge(v[1], v[2]);
	}
	cout << ans << endl;

	return 0;
}
0