結果
問題 | No.2179 Planet Traveler |
ユーザー | MasKoaTS |
提出日時 | 2022-09-06 16:01:05 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,277 bytes |
コンパイル時間 | 5,099 ms |
コンパイル使用メモリ | 274,432 KB |
実行使用メモリ | 24,064 KB |
最終ジャッジ日時 | 2024-05-07 20:26:51 |
合計ジャッジ時間 | 13,333 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 50 ms
23,932 KB |
testcase_15 | AC | 50 ms
23,808 KB |
testcase_16 | AC | 53 ms
24,064 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
ソースコード
#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; using u64 = unsigned long long; template <class T> using V = vector<T>; template <class T> using PQ = priority_queue<T, V<T>, greater<T> >; u64 isqrt(u64 n) { u64 ok = 0ll; u64 ng = 4000000000ll; while (ng - ok > 1ll) { u64 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<u64> > que = {}; rep(i, 0, n-1) { u64 r1 = (u64)(squ(p[i][0]) + squ(p[i][1])); rep(j, i + 1, n) { u64 r2 = (u64)(squ(p[j][0]) + squ(p[j][1])); u64 d = (u64)(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); cout << r1 << ' ' << r2 << ' ' << isqrt(4ll * r1 * r2) << endl; } que.push({ d,(u64)i,(u64)j }); } } u64 ans = 0ll; dsu uni(n); while (uni.same(0, n - 1) == false) { V<u64> v = que.top(); que.pop(); ans = v[0]; uni.merge(v[1], v[2]); } cout << ans << endl; return 0; }