結果
問題 | No.94 圏外です。(EASY) |
ユーザー | not_522 |
提出日時 | 2015-08-17 14:39:14 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 10 ms / 5,000 ms |
コード長 | 1,024 bytes |
コンパイル時間 | 1,312 ms |
コンパイル使用メモリ | 162,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-26 07:41:06 |
合計ジャッジ時間 | 2,091 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 3 ms
5,376 KB |
testcase_09 | AC | 6 ms
5,376 KB |
testcase_10 | AC | 6 ms
5,376 KB |
testcase_11 | AC | 5 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 5 ms
5,376 KB |
testcase_14 | AC | 6 ms
5,376 KB |
testcase_15 | AC | 5 ms
5,376 KB |
testcase_16 | AC | 6 ms
5,376 KB |
testcase_17 | AC | 5 ms
5,376 KB |
testcase_18 | AC | 6 ms
5,376 KB |
testcase_19 | AC | 10 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; class UnionFind { private: int n; vector<int> a; public: UnionFind(int n) : n(n), a(n, -1) {} int find(int x) {return a[x] < 0 ? x : (a[x] = find(a[x]));} bool equal(int x, int y) {return find(x) == find(y);} void unite(int x, int y) { x = find(x), y = find(y); if (x == y) return; if (a[x] > a[y]) swap(x, y); a[x] += a[y]; a[y] = x; --n; } int size() {return n;} int size(int x) {return -a[find(x)];} }; int main() { int n; cin >> n; vector<int> x(n), y(n); for (int i = 0; i < n; ++i) cin >> x[i] >> y[i]; UnionFind uf(n); for (int i = 0; i < n; ++i) { for (int j = i + 1; j < n; ++j) { if (pow(x[i] - x[j], 2) + pow(y[i] - y[j], 2) <= 100) uf.unite(i, j); } } double res = (n ? 2 : 1); for (int i = 0; i < n; ++i) { for (int j = i + 1; j < n; ++j) { if (uf.equal(i, j)) res = max(res, hypot(x[i] - x[j], y[i] - y[j]) + 2); } } cout << fixed << setprecision(15) << res << endl; }