結果
問題 | No.168 ものさし |
ユーザー | kyuna |
提出日時 | 2019-08-17 11:32:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 1,612 bytes |
コンパイル時間 | 1,214 ms |
コンパイル使用メモリ | 85,020 KB |
実行使用メモリ | 13,244 KB |
最終ジャッジ日時 | 2024-09-24 19:03:54 |
合計ジャッジ時間 | 2,268 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 17 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 20 ms
6,940 KB |
testcase_12 | AC | 66 ms
13,244 KB |
testcase_13 | AC | 94 ms
12,616 KB |
testcase_14 | AC | 96 ms
12,492 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,944 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 5 ms
6,944 KB |
testcase_19 | AC | 66 ms
13,184 KB |
testcase_20 | AC | 65 ms
12,880 KB |
testcase_21 | AC | 67 ms
12,688 KB |
testcase_22 | AC | 69 ms
12,428 KB |
ソースコード
#include <algorithm> #include <iostream> #include <vector> #include <queue> #include <cassert> using namespace std; const int INF = (int)1.5e9; using ll = long long; template<class T> T dist2(T x, T y) { return x * x + y * y; } struct UnionFind { vector<int> data; int sz; UnionFind(int sz) : data(sz, -1), sz(sz) { } bool unionSet(int x, int y) { if ((x = root(x)) == (y = root(y))) return false; if (data[x] > data[y]) swap(x, y); data[x] += data[y]; data[y] = x; sz--; return true; } bool findSet(int x, int y) { return root(x) == root(y); } int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); } int size(int x) { return -data[root(x)]; } int size() { return sz; } }; int n; vector<pair<ll, pair<int, int>>> ds; ll check(ll x) { UnionFind uf(n); for (auto &p: ds) { if (p.first > x * x) break; uf.unionSet(p.second.first, p.second.second); } return uf.findSet(0, n - 1); } ll binary_search(ll ok, ll ng) { assert(check(ok) == true); assert(check(ng) == false); while (abs(ng - ok) > 1) { ll mid = (ng + ok) / 2; (check(mid) ? ok : ng) = mid; } return ok; } int main() { cin >> n; vector<ll> x(n), y(n); for (int i = 0; i < n; i++) cin >> x[i] >> y[i]; for (int i = 0; i < n; i++) for (int j = i + 1; j < n; j++) { ll d = dist2(x[j] - x[i], y[j] - y[i]); ds.emplace_back(d, make_pair(i, j)); } sort(ds.begin(), ds.end()); ll ans = (binary_search(INF, 0) + 9) / 10 * 10; cout << ans << endl; return 0; }