結果
問題 | No.96 圏外です。 |
ユーザー | koyopro |
提出日時 | 2015-10-02 12:02:20 |
言語 | C++11 (gcc 13.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,758 bytes |
コンパイル時間 | 1,509 ms |
コンパイル使用メモリ | 169,556 KB |
実行使用メモリ | 134,868 KB |
最終ジャッジ日時 | 2024-07-19 19:06:19 |
合計ジャッジ時間 | 10,464 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
126,392 KB |
testcase_01 | AC | 50 ms
119,324 KB |
testcase_02 | AC | 47 ms
119,396 KB |
testcase_03 | AC | 46 ms
119,264 KB |
testcase_04 | AC | 52 ms
119,552 KB |
testcase_05 | AC | 53 ms
119,788 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 59 ms
120,576 KB |
testcase_09 | AC | 65 ms
121,292 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 177 ms
131,604 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | TLE | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
ソースコード
#include "bits/stdc++.h" using namespace std; #define REP(i, n) for(int i=0; i<(n); i++) #define AREAS 2222 #define DIFF 1e4 #define int long long int N; struct pos { int x, y, u; pos(int _x, int _y): x(_x), y(_y){}; }; vector<pos> ps; vector<int> area[AREAS][AREAS]; pos areapos(pos p) { return pos(p.x / 10, p.y / 10); } int distance2(pos a, pos b) { return pow(a.x - b.x, 2) + pow(a.y - b.y, 2); } int root(int i) { if (ps[i].u == i) return i; return ps[i].u = root(ps[i].u); } void uni(pos p1, pos p2) { ps[root(p1.u)].u = ps[root(p2.u)].u; } signed main() { cin >> N; int x, y; double maxl = (N > 0) ? 2.0 : 1.0; REP(i,N) { cin>>x>>y; pos p = pos(x+DIFF, y+DIFF); p.u = i; ps.push_back(p); int dxy9[] = {0, 1, -1}; pos ap = areapos(p); int found = false; REP(i,9) { int nx = ap.x + dxy9[i/3]; int ny = ap.y + dxy9[i%3]; if (nx<0||2000<=nx||ny<0||2000<=ny) continue; for (int pi : area[nx][ny]) { pos p1 = ps[pi]; if (distance2(p, p1) <= 100) { uni(p, p1); found = true; break; } } if (found) break; } area[ap.x][ap.y].push_back(i); } vector< vector<int> > unis(N); REP(i,N) { unis[root(i)].push_back(i); } REP(i,N) { if (unis[i].size() < 2) continue; int maxd = 0; for (int j : unis[i]) { for (int k : unis[i]) { maxd = max(maxd, distance2(ps[k], ps[j])); } } maxl = max(maxl, sqrt(maxd) + 2); } printf("%.14f\n", maxl); return 0; }