結果
| 問題 |
No.96 圏外です。
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-06 12:57:32 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 1,675 bytes |
| コンパイル時間 | 736 ms |
| コンパイル使用メモリ | 72,420 KB |
| 実行使用メモリ | 11,944 KB |
| 最終ジャッジ日時 | 2024-12-17 19:55:38 |
| 合計ジャッジ時間 | 81,780 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 16 TLE * 12 |
ソースコード
#include <algorithm>
#include <iostream>
#include <cstdio>
#include <cmath>
#include <vector>
/*
* Union-Find tree
* header requirement: vector
*/
class UnionFind {
private:
std::vector<int> disj;
std::vector<int> rank;
public:
UnionFind(int n) : disj(n), rank(n) {
for (int i = 0; i < n; ++i) {
disj[i] = i;
rank[i] = 0;
}
}
int root(int x) {
if (disj[x] == x) {
return x;
}
return disj[x] = root(disj[x]);
}
void unite(int x, int y) {
x = root(x);
y = root(y);
if (x == y) {
return;
}
if (rank[x] < rank[y]) {
disj[x] = y;
} else {
disj[y] = x;
if (rank[x] == rank[y]) {
++rank[x];
}
}
}
bool is_same_set(int x, int y) {
return root(x) == root(y);
}
};
#define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++)
using namespace std;
typedef long long int ll;
typedef vector<int> VI;
const double EPS=1e-9;
const int N = 120001;
int x[N], y[N];
int main(void){
int n;
cin >> n;
if (n == 0) {
cout << 1 << endl;
return 0;
}
UnionFind uf(n);
REP(i, 0, n) {
cin >> x[i] >> y[i];
}
REP(i, 0, n) {
REP(j, i + 1, n) {
int dist = (x[i] - x[j]) * (x[i] - x[j]) + (y[i] - y[j]) * (y[i] - y[j]);
if (dist <= 100) {
uf.unite(i, j);
}
}
}
ll ma = 0;
vector<VI> conn(n);
REP(i, 0, n) {
conn[uf.root(i)].push_back(i);
}
REP(i, 0, n) {
VI &t = conn[i];
REP(j, 0, t.size()) {
REP(k, j + 1, t.size()) {
int a = t[j];
int b = t[k];
ll dist = (x[a] - x[b]) * (x[a] - x[b]) + (y[a] - y[b]) * (y[a] - y[b]);
ma = max(ma, dist);
}
}
}
printf("%.9f\n", 2 + sqrt(ma));
}