結果
問題 | No.2179 Planet Traveler |
ユーザー | srjywrdnprkt |
提出日時 | 2023-06-11 02:45:30 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 87 ms / 3,000 ms |
コード長 | 1,971 bytes |
コンパイル時間 | 1,153 ms |
コンパイル使用メモリ | 121,320 KB |
実行使用メモリ | 15,848 KB |
最終ジャッジ日時 | 2024-06-11 00:45:23 |
合計ジャッジ時間 | 3,068 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 52 ms
15,720 KB |
testcase_12 | AC | 87 ms
15,720 KB |
testcase_13 | AC | 80 ms
15,724 KB |
testcase_14 | AC | 47 ms
15,848 KB |
testcase_15 | AC | 50 ms
15,724 KB |
testcase_16 | AC | 48 ms
15,716 KB |
testcase_17 | AC | 83 ms
15,720 KB |
testcase_18 | AC | 82 ms
15,848 KB |
testcase_19 | AC | 82 ms
15,720 KB |
testcase_20 | AC | 12 ms
5,376 KB |
testcase_21 | AC | 77 ms
15,716 KB |
testcase_22 | AC | 49 ms
9,576 KB |
testcase_23 | AC | 42 ms
9,572 KB |
testcase_24 | AC | 64 ms
9,552 KB |
testcase_25 | AC | 52 ms
9,568 KB |
testcase_26 | AC | 74 ms
15,724 KB |
testcase_27 | AC | 12 ms
5,376 KB |
testcase_28 | AC | 34 ms
9,696 KB |
testcase_29 | AC | 64 ms
9,568 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> using namespace std; using ll = long long; struct UnionFind { int ngroup; vector<int> par; vector<int> siz; UnionFind(int N) : par(N), siz(N) { ngroup = N; for(int i = 0; i < N; i++){ par[i] = i; siz[i] = 1; } } int root(int x) { if (par[x] == x) return x; return par[x] = root(par[x]); } int unite(int x, int y) { int rx = root(x); int ry = root(y); if (rx == ry) return rx; ngroup--; if (siz[rx] > siz[ry]) swap(rx, ry); par[rx] = ry; siz[ry] += siz[rx]; return ry; } bool same(int x, int y) { int rx = root(x); int ry = root(y); return rx == ry; } int size(int x){ return siz[root(x)]; } int group_count(){ return ngroup; } }; ll s(ll x){ return x*x; } ll isqrt(ll s){ ll l=0, r=3e9, c; while(r-l>1){ c = (l+r)/2; if (c*c <= s) l = c; else r = c; } return l; } int main(){ ll N, C, ans=0, R1, R2; cin >> N; vector<tuple<ll, ll, ll>> v; vector<ll> x(N), y(N), t(N); for (int i=0; i<N; i++) cin >> x[i] >> y[i] >> t[i]; UnionFind tree(N+1); for (int i=0; i<N; i++){ for (int j=i+1; j<N; j++){ if (t[i] != t[j]){ R1 = s(x[i]) + s(y[i]); R2 = s(x[j]) + s(y[j]); C = R1+R2-isqrt(R1*R2*4); } else C = s(x[i]-x[j])+s(y[i]-y[j]); v.push_back({C, i+1, j+1}); } } sort(v.begin(), v.end()); for (auto [c, i, j] : v){ if (!tree.same(1, N)){ tree.unite(i, j); ans = c; } } cout << ans << endl; return 0; }